<!doctype html> <html> <head><title>ユーザー登録</title></head> <body> <h2>新規登録</h2> <form method="post"> ユーザー名: <input type="text" name="username"><br> パスワード: <input type="password" name="password"><br> <input type="submit" value="登録"> </form> <a href="{{ url_for('login') }}">ログインはこちら</a> </body> </html>