10 lines
249 B
HTML
10 lines
249 B
HTML
{% extends "admin/base_site.html" %}
|
|
|
|
{% block content %}
|
|
<h1>SMS Test</h1>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Send" class="default">
|
|
</form>
|
|
{% endblock %} |