18 lines
579 B
HTML
18 lines
579 B
HTML
{% extends "authorized.html" %}
|
|
{% block title %}Add to {{ user.given_name }} Wishlist{% endblock %}
|
|
{% block center %}
|
|
<h1>Add Item to Wishlist</h1>
|
|
<form method="post">
|
|
<div class="my-3">
|
|
<label for="item">Item</label>
|
|
<input type="text" class="form-control my-1" id="item" name="item" required>
|
|
</div>
|
|
<div class="my-3">
|
|
<label for="item_url">URL</label>
|
|
<input type="text" class="form-control my-1" id="item_url" name="item_url">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
</form>
|
|
<br/>
|
|
{% endblock center %}
|