Skip to content
Permalink
3339c012d1
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
44 lines (36 sloc) 954 Bytes
{% extends "base.html" %}
{% block navTabs %}
{% include "helpers/requestNav.html" %}
{% endblock navTabs %}
{% block content %}
<h1>Requests Data: Form Challenge</h1>
<div class="section">
<form method="GET">
<div class="row">
<div class="input-field col s12">
<input id="user" name="user" type="text">
<label for="user">User Name</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input id="date" type="date" name="date" class="validate">
<label for="date">Date</label>
</div>
</div>
<input type="hidden" name="hidden" value="A Hidden Item">
<button class="btn waves-effect waves-light" type="submit" name="action">Submit</button>
</form>
</div>
{% if feedback %}
<h3>Incorrect Response </h3>
<ul>
{% for item in feedback %}
<li>{{ item }}</li>
{% endfor %}
</ul>
{% endif %}
{% if flag %}
<h3>Have a Flag {{ flag }}</h3>
{% endif %}
{% endblock content %}