mirror of https://github.com/snachodog/mybuddy.git
10 lines
268 B
HTML
10 lines
268 B
HTML
|
<script type="text/javascript">
|
||
|
angular.module('djangular-demo', ['djng.forms']);
|
||
|
</script>
|
||
|
|
||
|
<form method="post" action="babyblotter" validate>
|
||
|
{% csrf_token %}
|
||
|
{{ form.as_div }}
|
||
|
<button type="submit" class="btn btn-primary">Subscribe</button>
|
||
|
</form>
|