Created
December 16, 2025 02:14
-
-
Save smzn/fcc316a54556ff701c6cce8e6c332dff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>新規登録</title> | |
| </head> | |
| <body> | |
| <h1>場所の新規登録</h1> | |
| <form method="POST"> | |
| <div> | |
| <label>場所の名前:</label> | |
| <input type="text" name="name" required> | |
| </div> | |
| <div> | |
| <label>緯度:</label> | |
| <input type="text" name="latitude" required> | |
| </div> | |
| <div> | |
| <label>経度:</label> | |
| <input type="text" name="longitude" required> | |
| </div> | |
| <button type="submit">登録する</button> | |
| </form> | |
| <a href="{{ url_for('index') }}">一覧に戻る</a> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment