Skip to content
Permalink
460384e11f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
21 lines (17 sloc) 449 Bytes
{% extends 'base.html' %}
{% block title %} Trackmaster {% endblock %}
{% block body %}
{% if error == 1 %}
<h1>WRONG PASSWORD!!!</h1>
{% endif %}
{% if error == 2 %}
<h1>WRONG TID!!!</h1>
{% endif %}
<form method="post" action="index">
<label>tid :</label>
<input type="text" name="username" />
<label>password :</label>
<input type="password" name="password" />
<button type="submit">Login</button>
</form>
{% endblock %}