You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
775 B
HTML
25 lines
775 B
HTML
5 years ago
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<section id="main" class="wrapper">
|
||
|
<div class="container">
|
||
|
<header class="minor">
|
||
|
<h2>Edit Shipping</h2>
|
||
|
</header>
|
||
|
<section>
|
||
|
<p class="sale-info">You need to provide shipping information before buying or selling items so that others can account for shipping costs.</p>
|
||
|
<p class="sale-info">Your city, state, and country will be shown when buying or selling; the physical address will only be shown to sellers when you've won a bid.</p>
|
||
|
<br>
|
||
|
<form method="post">
|
||
|
{% csrf_token %}
|
||
|
{{ form.as_p }}
|
||
|
<input type="hidden" name="next" value="{{ next }}">
|
||
|
<input type="submit" value="Submit">
|
||
|
</form>
|
||
|
</section>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
{% endblock %}
|