mirror of
https://github.com/Xevion/v1.xevion.dev.git
synced 2025-12-10 18:09:05 -06:00
fix invalid HTML form ids, fix HTML syntax invalid tag closing
This commit is contained in:
@@ -31,11 +31,11 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<div class="content word-break resize-font">
|
<div class="content word-break resize-font">
|
||||||
<form method="GET" action="{{ request.path }}">
|
<form id="form" method="GET" action="{{ request.path }}">
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="tags">Tags</label>
|
<label for="form">Tags</label>
|
||||||
<p class="control has-icons-left">
|
<p class="control has-icons-left">
|
||||||
<input class="input" type="search" name="tags" value="{{ tags }}""/>
|
<input class="input" type="search" name="tags" value="{{ tags }}">
|
||||||
<span class=" icon is-small is-left">
|
<span class=" icon is-small is-left">
|
||||||
<i class="fas fa-search"></i>
|
<i class="fas fa-search"></i>
|
||||||
</span>
|
</span>
|
||||||
@@ -43,7 +43,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="count">Count</label>
|
<label for="form">Count</label>
|
||||||
<p class="control has-icons-left">
|
<p class="control has-icons-left">
|
||||||
<input class="input" type="number" min="0" max="1000" name="count"
|
<input class="input" type="number" min="0" max="1000" name="count"
|
||||||
value="{{ count or 50}}" />
|
value="{{ count or 50}}" />
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="page">Page</label>
|
<label for="form">Page</label>
|
||||||
<p class="control has-icons-left">
|
<p class="control has-icons-left">
|
||||||
<input class="input" type="number" min="0" max="1000" name="page"
|
<input class="input" type="number" min="0" max="1000" name="page"
|
||||||
value="{{ page or 0 }}" />
|
value="{{ page or 0 }}" />
|
||||||
@@ -63,17 +63,17 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="base64">Use base64 proxying?</label>
|
<label for="form">Use base64 proxying?</label>
|
||||||
<input type="checkbox" name="base64" value="true"
|
<input type="checkbox" name="base64" value="true"
|
||||||
{% if base64 %}checked{% endif %} />
|
{% if base64 %}checked{% endif %} />
|
||||||
</div>
|
</div>
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="showsample">Show fullsize (instead of thumbnail image)?</label>
|
<label for="form">Show fullsize (instead of thumbnail image)?</label>
|
||||||
<input type="checkbox" name="showfull" value="true"
|
<input type="checkbox" name="showfull" value="true"
|
||||||
{% if showfull %}checked{% endif %} />
|
{% if showfull %}checked{% endif %} />
|
||||||
</div>
|
</div>
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="showtags">Show tags of image?</label>
|
<label for="form">Show tags of image?</label>
|
||||||
<input type="checkbox" name="showtags" value="true"
|
<input type="checkbox" name="showtags" value="true"
|
||||||
{% if showtags %}checked{% endif %} />
|
{% if showtags %}checked{% endif %} />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -56,8 +56,8 @@
|
|||||||
<!-- Remember Me Checkbox Field -->
|
<!-- Remember Me Checkbox Field -->
|
||||||
<div class="column is-6">
|
<div class="column is-6">
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
{{ form.remember_me(class_="checkbox") }} {{ form.remember_me.label }}</p>
|
{{ form.remember_me(class_="checkbox") }} {{ form.remember_me.label }}
|
||||||
<label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="column is-2"></div>
|
<div class="column is-2"></div>
|
||||||
<!-- Submit Button Field -->
|
<!-- Submit Button Field -->
|
||||||
|
|||||||
Reference in New Issue
Block a user