init
This commit is contained in:
commit
5309e0593b
22 changed files with 722 additions and 0 deletions
blog/templates
10
blog/templates/login.html
Normal file
10
blog/templates/login.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
{% extends "layout.html" %}
|
||||
{% block body %}
|
||||
<form action="{{ url_for('login')}}" method="post">
|
||||
<label for="username">ユーザ名</label>
|
||||
<input type="text" id="username" name="username">
|
||||
<label for="password">パスワード</label>
|
||||
<input type="password" id="password" name="password">
|
||||
<button type="submit">ログイン</button>
|
||||
</form>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue