This commit is contained in:
Akira Tempaku 2025-03-02 15:07:48 +09:00
commit 5309e0593b
Signed by: paku
GPG key ID: 5B4E8402BCC50607
22 changed files with 722 additions and 0 deletions
blog/templates

10
blog/templates/login.html Normal file
View 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 %}