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
43 lines (28 sloc) 974 Bytes
{% extends "base.html" %}
{% block navTabs %}
{% include "helpers/requestNav.html" %}
{% endblock navTabs %}
{% block content %}
<h1>{{ method }} Requests Browser</h1>
<p>You can use this page to see the headers sent as part of a {{ method }} request</p>
<p>You can also use the form to submit data</p>
<div class="section">
<form method={{ method }}>
<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="password" type="password" name="pasword" class="validate">
<label for="password">Password</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>
{% include "helpers/displayRequest.jinja2" %}
{% endblock content %}