Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save smzn/e5c9eb819c8618b0507faaa15b2b5835 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" value="{{ location.name }}" required>
</div>
<div>
<label>緯度:</label>
<input type="text" name="latitude" value="{{ location.latitude }}" required>
</div>
<div>
<label>経度:</label>
<input type="text" name="longitude" value="{{ location.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