ungleich-user/dal/dal/templates/landing.html

44 lines
1.3 KiB
HTML
Raw Normal View History

2018-11-10 13:54:35 +00:00
{% extends "base_short.html" %}
2019-01-26 13:02:37 +00:00
{% load staticfiles %}
2018-11-10 12:10:17 +00:00
{% block content %}
2018-11-10 13:54:35 +00:00
<style>
2019-01-26 13:02:37 +00:00
.auth-footer {
2018-11-10 13:54:35 +00:00
color: black;
}
2019-01-26 13:02:37 +00:00
a:link { color: #000000 }
2018-11-10 13:54:35 +00:00
</style>
2018-11-10 12:10:17 +00:00
<div class="auth_container">
<div class="auth_bg"></div>
<div class="auth_center">
<div class="auth_content">
<div class="auth-box">
2018-11-10 16:05:57 +00:00
<h2 class="section-heading allcaps"> Login </h2>
2018-11-10 13:54:35 +00:00
{% include 'includes/_messages.html' %}
<form action={% url 'index' %} method="post" class="form" nonvalidated>
2018-11-10 12:10:17 +00:00
{% csrf_token %}
<div class="text-center">
2018-11-10 15:06:25 +00:00
<div class="form-group"><label class="sr-only control-label" for="username">Username</label><input class="form-control" type="text" name="username" id="username" placeholder="Username"></div>
<div class="form-group"><label class="sr-only control-label" for="password">Password</label><input class="form-control" type="password" name="password" id="password" placeholder="Password"></div>
2018-11-10 13:54:35 +00:00
<br><br>
2018-11-10 12:10:17 +00:00
<button type="submit" class="btn choice-btn"> Log in </button>
</div>
</form>
<div class="auth-footer">
<div>
Don't have an account yet?&nbsp;
<a href={% url 'register' %}> Sign up </a>
</div>
<div>
or <a href={% url 'reset_password' %}> Reset your password </a>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}