Browse Source

Login: Add notes about invites and password resets

merge-requests/55/head
Deimos 6 years ago
parent
commit
0097f67d86
  1. 4
      tildes/scss/modules/_form.scss
  2. 8
      tildes/tildes/templates/login.jinja2

4
tildes/scss/modules/_form.scss

@ -28,6 +28,10 @@ select.form-select:not([multiple]) {
}
}
.form-login {
margin-bottom: 2rem;
}
.form-buttons {
display: flex;
flex-direction: row-reverse;

8
tildes/tildes/templates/login.jinja2

@ -8,7 +8,7 @@
{% block main_heading %}Log in{% endblock %}
{% block content %}
<form class="form-narrow" method="post" data-ic-post-to="/login" data-ic-target="closest main">
<form class="form-narrow form-login" method="post" data-ic-post-to="/login" data-ic-target="closest main">
<input type="hidden" name="csrf_token" value="{{ get_csrf_token() }}">
<div class="form-group">
@ -32,4 +32,10 @@
<button class="btn btn-primary" type="submit">Log in</button>
</div>
</form>
<hr>
<p class="text-small">Tildes is currently in invite-only alpha, and you must be invited to be able to register. Most of the existing users have the ability to invite others, so if you know someone that has an account, you can ask them for an invite. Otherwise, please <a href="https://blog.tildes.net/announcing-tildes">read the announcement blog post</a> for more info about the site and instructions for requesting an invite from the site admin.</p>
<p class="text-small">If you already have a Tildes account but have forgotten your password, please send an email (you must include your username) to <a href="mailto:password@tildes.net">password@tildes.net</a>.</p>
{% endblock %}
Loading…
Cancel
Save