Add "create" template
This commit is contained in:
parent
822cf5b037
commit
56544cd0d4
6 changed files with 916 additions and 41 deletions
15
simple_text_board/templates/base.html.tera
Normal file
15
simple_text_board/templates/base.html.tera
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>simple text board</title>
|
||||
</head>
|
||||
<body>
|
||||
<ul>
|
||||
<li><a href="/">home</a></li>
|
||||
<li><a href="/create">create post</a></li>
|
||||
</ul>
|
||||
{% block content %} {% endblock %}
|
||||
</body>
|
||||
</html>
|
25
simple_text_board/templates/create.html.tera
Normal file
25
simple_text_board/templates/create.html.tera
Normal file
|
@ -0,0 +1,25 @@
|
|||
{% extends "base" %}
|
||||
|
||||
{% block content %}
|
||||
<h1>simple text board</h1>
|
||||
<h2>create a post</h2>
|
||||
{% if flash %}
|
||||
<p>{{ flash }}</p>
|
||||
{% endif %}
|
||||
<form action="/create" method="post" accept-charset="utf-8">
|
||||
<label for="author">author name</label>
|
||||
<input type="text" placeholder="author" name="author" required>
|
||||
|
||||
<label for="email">email</label>
|
||||
<input type="text" placeholder="email" name="email">
|
||||
|
||||
<label for="title">title</label>
|
||||
<input type="text" placeholder="title" name="title" required>
|
||||
|
||||
<label for="content">content</label>
|
||||
<textarea type="text" placeholder="content" name="content" rows="8" cols="50" required>
|
||||
</textarea>
|
||||
|
||||
<button type="submit">create</button>
|
||||
</form>
|
||||
{% endblock content %}
|
Loading…
Add table
Add a link
Reference in a new issue