Initial commit
This commit is contained in:
25
templates/forms/edit-page.html
Normal file
25
templates/forms/edit-page.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<header>
|
||||
{% include 'partials/site-wide-header.html' %}
|
||||
</header>
|
||||
<h1>{{page_title}}</h1>
|
||||
<form action='/submit-edit' method='POST'>
|
||||
<input type='hidden' name='page' value='{{page_title}}'>
|
||||
|
||||
<label>Username:</label><br/>
|
||||
<input type='text' name='username'><br/>
|
||||
<label>Password:</label><br/>
|
||||
<input type='password' name='password'><br/>
|
||||
|
||||
<label>Content:</label><br/>
|
||||
<textarea name='content'>{{content}}</textarea><br/>
|
||||
|
||||
<input type='submit'>
|
||||
</form>
|
||||
<footer>
|
||||
{% include 'partials/site-wide-footer.html' %}
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user