mirror of
https://github.com/Lynnesbian/FediBooks/
synced 2024-11-25 08:38:59 +00:00
make login and signup pages look better
This commit is contained in:
parent
b39a10c16f
commit
313dbc37fd
2 changed files with 6 additions and 3 deletions
|
@ -47,6 +47,9 @@ body {
|
|||
.no-margin {
|
||||
margin: 0;
|
||||
}
|
||||
.left-align {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.panel-icon {
|
||||
width: 100px;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
<label for="email" class="important full-width">Email</label>
|
||||
<input type="email" name="email" placeholder="you@example.com">
|
||||
{% if signup %}
|
||||
<p class="small">
|
||||
<p class="small full-width left-align">
|
||||
FediBooks requires your email address in order to send you alerts when your bot stops working, and for password resets.
|
||||
</p>
|
||||
{% endif %}
|
||||
|
@ -27,12 +27,12 @@
|
|||
<label for="password" class="important full-width">Password</label>
|
||||
<input type="password" pattern=".{8,}" name="password">
|
||||
{% if signup %}
|
||||
<p class="small">
|
||||
<p class="small full-width left-align">
|
||||
Passwords must be at least eight characters long.
|
||||
</p>
|
||||
{% endif %}
|
||||
</p>
|
||||
<input type="submit" value="{% if signup %}Create my account{% else %}Log in{% endif %}" class="button btn-primary full-width">
|
||||
<input type="submit" value="{% if signup %}Create my account{% else %}Log in{% endif %}" class="button centred btn-primary full-width">
|
||||
</form>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in a new issue