realms-wiki/realms/templates/wiki/create.html

18 lines
537 B
HTML
Raw Normal View History

2013-09-26 16:51:15 +03:00
{% extends 'layout.html' %}
{% block body %}
2014-09-05 00:35:28 +03:00
<form role="form" method="post">
<div class="form-group">
<label for="name"></label>
<input id="name" type="text" class="form-control" name="name" placeholder="Page Name" value="{{- name -}}" />
</div>
2013-10-01 07:10:10 +03:00
2014-09-05 00:35:28 +03:00
<div class="form-group">
<label for="content"></label>
<textarea name="content" id="content" class="form-control" placeholder="Content"></textarea>
</div>
2013-10-01 07:10:10 +03:00
2014-09-05 00:35:28 +03:00
<input type="submit" class="btn btn-primary" value="Save" />
</form>
2013-09-26 16:51:15 +03:00
{% endblock %}