vuejs-userservice/dal/dal/templates/landing.html

45 lines
1.0 KiB
HTML
Raw Normal View History

2018-11-10 13:54:35 +00:00
{% extends "base_short.html" %}
2018-11-10 12:10:17 +00:00
{% load staticfiles %}
{% block content %}
2018-11-10 13:54:35 +00:00
<style>
.auth-footer {
color: black;
}
</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 13:54:35 +00:00
<h2 class="section-heading"> Login </h2>
{% 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 13:54:35 +00:00
<br>Username:<br><input type="text" name="username" id="username">
<br>Password:<br><input type="password" name="password" id="password">
<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 %}