1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 22:59:28 +00:00

Generalised form styles

This commit is contained in:
2022-03-07 14:45:09 +00:00
parent c6419cad8b
commit 27a4ecd7c1
8 changed files with 35 additions and 33 deletions

View File

@@ -1,6 +1,6 @@
{{> mainPageHeader name='Password Recovery' }}
<div class='mainForm'>
<div class='formContainer'>
<form action='/change-password' method='post'>
<input type='password' id='password' name='password' placeholder='New password' required/>
<input type='password' id='confPassword' name='confPassword' placeholder='Confirm new password' required/>
@@ -8,7 +8,7 @@
<input type='hidden' id='uuid' name='uuid' value='{{ uuid }}' required/>
<input type='hidden' id='token' name='token' value='{{ token }}' required/>
<input type='submit' class='btn btn--primary' value='Change password'/>
<input type='submit' class='btn btn--primary btn--full' value='Change password'/>
</form>
<a href='/login'>Back to login</a>
</div>