Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions interface/templates/base-results.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ <h2>
<form action="/site/" method="POST">
<label class="text-input" for="web-url">
{% include "string.html" with name="base test website input" %}
<input id="web-url" type="text" inputmode="url" name="url" placeholder="www.example.nl" autocorrect="off" autocapitalize="none" spellcheck="false">
<input id="web-url" type="text" inputmode="url" name="url" placeholder="{% include "string.html" with name="base test website placeholder" %}" autocorrect="off" autocapitalize="none" spellcheck="false">
</label>
<div class="contains-button">
<button>
Expand Down Expand Up @@ -172,7 +172,7 @@ <h2>
<label class="text-input" for="mail-url">
{% include "string.html" with name="base test mail input" %}
<span class="emailfield before">
<input id="mail-url" class="email" type="text" inputmode="url" name="url" placeholder="example.nl" autocorrect="off" autocapitalize="none" spellcheck="false">
<input id="mail-url" class="email" type="text" inputmode="url" name="url" placeholder="{% include "string.html" with name="base test mail placeholder" %}" autocorrect="off" autocapitalize="none" spellcheck="false">
</span>
</label>
<div class="contains-button">
Expand Down
4 changes: 2 additions & 2 deletions interface/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h2>{% include "string.html" with name="base test website label" %}</h2>
</div>
<form action="/site/" method="POST">
<label class="text-input" for="web-url">{% include "string.html" with name="base test website input" %}
<input id="web-url" type="text" inputmode="url" name="url" placeholder="www.example.nl" autocorrect="off" autocapitalize="none" spellcheck="false">
<input id="web-url" type="text" inputmode="url" name="url" placeholder="{% include "string.html" with name="base test website placeholder" %}" autocorrect="off" autocapitalize="none" spellcheck="false">
</label>
<div class="contains-button">
<button>{% include "string.html" with name="base test start" %}</button>
Expand All @@ -44,7 +44,7 @@ <h2>{% include "string.html" with name="base test mail label" %}</h2>
<form action="/mail/" method="POST">
<label class="text-input" for="mail-url">{% include "string.html" with name="base test mail input" %}
<span class="emailfield before">
<input id="mail-url" class="email" type="text" inputmode="url" name="url" placeholder="example.nl" autocorrect="off" autocapitalize="none" spellcheck="false">
<input id="mail-url" class="email" type="text" inputmode="url" name="url" placeholder="{% include "string.html" with name="base test mail placeholder" %}" autocorrect="off" autocapitalize="none" spellcheck="false">
</span>
</label>
<div class="contains-button">
Expand Down
2 changes: 1 addition & 1 deletion interface/templates/test-mail.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1>{% include "string.html" with name="base test mail title" %}</h1>
<form action="/mail/" method="POST">
<label class="text-input" for="mail-url">{% include "string.html" with name="base test mail input" %}
<span class="emailfield before">
<input id="mail-url" class="email" type="text" inputmode="url" name="url" placeholder="example.nl" autocorrect="off" autocapitalize="none" spellcheck="false">
<input id="mail-url" class="email" type="text" inputmode="url" name="url" placeholder="{% include "string.html" with name="base test mail placeholder" %}" autocorrect="off" autocapitalize="none" spellcheck="false">
</span>
</label>
{% if request.GET.invalid != None %}
Expand Down
2 changes: 1 addition & 1 deletion interface/templates/test-site.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h1>{% include "string.html" with name="base test website title" %}</h1>
</div>
<form action="/site/" method="POST">
<label class="text-input" for="web-url">{% include "string.html" with name="base test website input" %}
<input id="web-url" type="text" inputmode="url" name="url" placeholder="www.example.nl" autocorrect="off" autocapitalize="none" spellcheck="false">
<input id="web-url" type="text" inputmode="url" name="url" placeholder="{% include "string.html" with name="base test website placeholder" %}" autocorrect="off" autocapitalize="none" spellcheck="false">
</label>
{% if request.GET.invalid != None %}
<div class="invalid-domain">
Expand Down
2 changes: 1 addition & 1 deletion interface/templates/widget-mail.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h2><label for="html-block">HTML</label></h2>
&lt;/p&gt;
&lt;label for="internetnl-mail-url"&gt;{% translate 'base test mail input'%}&lt;/label&gt;
&lt;span class="internetnl emailfield"&gt;
&lt;input id="internetnl-mail-url" type="text" inputmode="url" name="url" placeholder="example.nl"&gt;
&lt;input id="internetnl-mail-url" type="text" inputmode="url" name="url" placeholder="{% include "string.html" with name="base test mail placeholder" %}"&gt;
&lt;/span&gt;
&lt;button class="internetnl"&gt;{% translate 'base test start'%}&lt;/button&gt;
&lt;/form&gt;</textarea>
Expand Down
2 changes: 1 addition & 1 deletion interface/templates/widget-site.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2><label for="html-block">HTML</label></h2>
{% translate 'widget site html-block' %}
&lt;/p&gt;
&lt;label for="internetnl-site-url"&gt;{% translate 'base test website input'%}&lt;/label&gt;
&lt;input id="internetnl-site-url" type="text" inputmode="url" name="url" placeholder="www.example.nl"&gt;
&lt;input id="internetnl-site-url" type="text" inputmode="url" name="url" placeholder="{% include "string.html" with name="base test website placeholder" %}"&gt;
&lt;button class="internetnl"&gt;{% translate 'base test start'%}&lt;/button&gt;
&lt;/form&gt;</textarea>
</div>
Expand Down
Loading