You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
488 B

{% extends "base.html" %}
{% block main %}
2 years ago
<form method="post" class="cl-form section">
{% csrf_token %}
2 years ago
<h4>Create new link</h4>
<div class="cl-from">
2 years ago
{{ form.domain }} <p class="cl-form-deco" style="padding-top: 0.5ch;">/</p> {{ form.location }}
</div>
<div class="cl-to">
<p class="cl-form-deco"></p> {{ form.to }}
</div>
<input type="submit" value="Submit" class="cl-submit"/>
</form>
{% endblock %}