flask-blog/blog/templates/login.html

11 lines
377 B
HTML
Raw Normal View History

2025-03-02 15:07:48 +09:00
{% 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 %}