summaryrefslogtreecommitdiffstats
path: root/qtip/web/templates/registration/login.html
blob: 53da937615b3b47984c2748dee3ce035044e9932 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title>QTIP Benchmarking Services</title>
    </head>
    <body>
        {% block content %}
        <form role="form" method="post" action= "/bench/login/">{% csrf_token %}
        {{ form }}
            <div class=input-field" style="margin:30px 20px">
                <button  type="submit" value="Login"/>Login</button>
                <input type="hidden" name="next" value = "{{ next }}"/>
            </div>
        </form>
        {% endblock %}
    </body>
</html>