mirror of
https://github.com/Adam-Ant/QuotesDB
synced 2024-11-05 10:56:22 +00:00
28 lines
852 B
HTML
28 lines
852 B
HTML
|
{% extends "layout.html" %}
|
||
|
{% block body %}
|
||
|
<h1> Add new Quote </h1>
|
||
|
<form method="post">
|
||
|
<div class="form-group">
|
||
|
<label for="quote">Quote:</label>
|
||
|
<textarea rows="3" maxlength="500" class="form-control" id="quote" name="quote" ></textarea>
|
||
|
<span class="help-block">Required</span>
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<label for="context">Context:</label>
|
||
|
<textarea rows="3" maxlength="500" class="form-control" id="context" name="context" ></textarea>
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<label for="user">User:</label>
|
||
|
<select class="form-control" id="user" name="user">
|
||
|
{% for user in users %}
|
||
|
<option value="{{ user[0] }}">{{ user[1] }}</option>
|
||
|
{% endfor %}
|
||
|
</select>
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||
|
</div>
|
||
|
|
||
|
</form>
|
||
|
{% endblock %}
|