diff options
author | Filipp Lepalaan <f@230.to> | 2013-11-19 16:44:56 +0200 |
---|---|---|
committer | Filipp Lepalaan <f@230.to> | 2013-11-19 16:44:56 +0200 |
commit | 8782fbe4766dc57e517eec622879d672d6d68378 (patch) | |
tree | bec35a5bbddedba04c0a1ac34e105d6da7dc5ab4 /templates/issues/welcome.html | |
parent | 1c760af665e388f921b770d9c5c3ded1fc11f626 (diff) | |
download | motor.old-8782fbe4766dc57e517eec622879d672d6d68378.tar.gz motor.old-8782fbe4766dc57e517eec622879d672d6d68378.tar.bz2 motor.old-8782fbe4766dc57e517eec622879d672d6d68378.zip |
switch
Diffstat (limited to 'templates/issues/welcome.html')
-rw-r--r-- | templates/issues/welcome.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/issues/welcome.html b/templates/issues/welcome.html new file mode 100644 index 0000000..38c0dcd --- /dev/null +++ b/templates/issues/welcome.html @@ -0,0 +1,15 @@ +{% extends "issues/index.html" %} +{% load i18n %} + +{% block main %} + <form method="post" action="{% url 'issues-warranty' %}"> + {% csrf_token %} + <div class="form-group"> + <label for="exampleInputEmail1">Serial Number</label> + <input type="email" class="form-control" id="exampleInputEmail1" placeholder="{% trans "Serial Number" %}" value="DGKFL06JDHJP"> + </div> + <div class="form-group"> + <a href="{% url 'issues-choose_device' %}" class="btn btn-default">{% trans "Skip" %}</a> + </div> + </form> +{% endblock main %} |