Skip to content

Instantly share code, notes, and snippets.

@smzn
Created December 16, 2025 02:14
Show Gist options
  • Select an option

  • Save smzn/fcc316a54556ff701c6cce8e6c332dff to your computer and use it in GitHub Desktop.

Select an option

Save smzn/fcc316a54556ff701c6cce8e6c332dff to your computer and use it in GitHub Desktop.
<!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