1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 12:04:15 +00:00
webvirtcloud/accounts/templates/login.html

30 lines
1.2 KiB
HTML
Raw Normal View History

2020-10-19 08:26:08 +00:00
{% extends "base.html" %}
2015-03-02 15:31:25 +00:00
{% load i18n %}
2020-10-19 08:26:08 +00:00
{% load static %}
2020-05-19 16:53:54 +00:00
{% block title %}{% trans "WebVirtCloud" %} - {% trans "Sign In" %}{% endblock %}
2020-10-19 08:26:08 +00:00
{% block style %}
<link href="{% static "css/signin.css" %}" rel="stylesheet">
{% endblock style %}
2015-03-02 15:31:25 +00:00
{% block content %}
2020-10-19 08:26:08 +00:00
<div class="page-header">
<a class="" href="/"><h1>WebVirtCloud</h1></a>
</div>
<div class="col-12" role="main">
{% if form.errors %}
<div class="alert alert-danger">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
{% trans "Incorrect username or password." %}
2015-03-24 14:16:46 +00:00
</div>
2020-10-19 08:26:08 +00:00
{% endif %}
<form class="form-signin" method="post" role="form" aria-label="Login form">{% csrf_token %}
<h2 class="form-signin-heading">{% trans "Sign In" %}</h2>
2020-10-23 08:35:32 +00:00
<input type="text" class="form-control" name="username" placeholder="{% trans "User" %}" autocapitalize="none" autocorrect="off" autofocus>
2020-10-19 08:26:08 +00:00
<input type="password" class="form-control" name="password" placeholder="{% trans "Password" %}">
<input type="hidden" name="next" value="{{ next }}">
<button class="btn btn-lg btn-success btn-block" type="submit">{% trans "Sign In" %}</button>
</form>
</div>
2015-03-02 15:31:25 +00:00
{% endblock %}