aboutsummaryrefslogtreecommitdiffstats
path: root/templates/issues/welcome.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/issues/welcome.html')
-rw-r--r--templates/issues/welcome.html15
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 %}