change form width for better mobile styling
This commit is contained in:
@ -15,6 +15,7 @@
|
|||||||
* - HTML
|
* - HTML
|
||||||
* - FLASH MESSAGE
|
* - FLASH MESSAGE
|
||||||
* - FONTS
|
* - FONTS
|
||||||
|
* - FORMS
|
||||||
* - ICONS
|
* - ICONS
|
||||||
* - INPUTS
|
* - INPUTS
|
||||||
* - LABELS
|
* - LABELS
|
||||||
@ -596,6 +597,20 @@ html {
|
|||||||
color: var(--danger);
|
color: var(--danger);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* FORMS
|
||||||
|
*/
|
||||||
|
|
||||||
|
form {
|
||||||
|
width: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 600px) {
|
||||||
|
form {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ICONS
|
* ICONS
|
||||||
*/
|
*/
|
||||||
|
@ -2,21 +2,19 @@
|
|||||||
{%- block card %}
|
{%- block card %}
|
||||||
<!-- CHANGE PASSWORD FORM -->
|
<!-- CHANGE PASSWORD FORM -->
|
||||||
<div class="card center">
|
<div class="card center">
|
||||||
<div class="form-container">
|
<form id="changePassword" action="/settings/admin/change_password" method="post">
|
||||||
<form id="changePassword" action="/settings/admin/change_password" method="post">
|
<!-- input for current password -->
|
||||||
<!-- input for current password -->
|
<input id="currentPassword" class="center input" name="current_password" type="password" placeholder="Current password" title="Current password" autofocus>
|
||||||
<input id="currentPassword" class="center input" name="current_password" type="password" placeholder="Current password" title="Current password" autofocus>
|
<!-- input for new password -->
|
||||||
<!-- input for new password -->
|
<input id="newPassword" class="center input" name="new_password1" type="password" placeholder="New password" title="New password">
|
||||||
<input id="newPassword" class="center input" name="new_password1" type="password" placeholder="New password" title="New password">
|
<!-- input for duplicate new password -->
|
||||||
<!-- input for duplicate new password -->
|
<input id="newPasswordDuplicate" class="center input" name="new_password2" type="password" placeholder="Re-enter new password" title="New password duplicate">
|
||||||
<input id="newPasswordDuplicate" class="center input" name="new_password2" type="password" placeholder="Re-enter new password" title="New password duplicate">
|
<div id="buttonDiv">
|
||||||
<div id="buttonDiv">
|
<input id="savePassword" class="button button-primary center" title="Add" type="submit" value="Save">
|
||||||
<input id="savePassword" class="button button-primary center" title="Add" type="submit" value="Save">
|
<a class="button button-secondary center" href="/settings/admin" title="Cancel">Cancel</a>
|
||||||
<a class="button button-secondary center" href="/settings/admin" title="Cancel">Cancel</a>
|
</div>
|
||||||
</div>
|
</form>
|
||||||
</form>
|
<!-- FLASH MESSAGE -->
|
||||||
<!-- FLASH MESSAGE -->
|
{% include "snippets/flash_message" %}
|
||||||
{% include "snippets/flash_message" %}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
{%- endblock card -%}
|
{%- endblock card -%}
|
||||||
|
Reference in New Issue
Block a user