21 lines
425 B
HTML
21 lines
425 B
HTML
<!DOCTYPE html>
|
|
</html>
|
|
<head>
|
|
{% include 'partials/head.html' %}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
{% include 'partials/site-wide-header.html' %}
|
|
</header>
|
|
<form action='/submit_create_page' method='post'>
|
|
<label>Page Name:</label>
|
|
<input type='text' name='page_name'>
|
|
|
|
<input type='submit' value='submit'>
|
|
</form
|
|
<footer>
|
|
{% include 'partials/site-wide-footer.html' %}
|
|
</footer>
|
|
</body>
|
|
</html>
|