Files
memories/templates/index.html
maq ae0a6b575b
Some checks failed
CI/CD Pipeline / test (3.1) (push) Has been cancelled
CI/CD Pipeline / lint (push) Has been cancelled
CI/CD Pipeline / deploy (push) Has been cancelled
Initial commit: Complete Memories app with Leaflet map, backend fixes, enhancements, and docs
2025-11-04 21:52:45 -08:00

16 lines
503 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memories App</title>
</head>
<body>
<h1>Welcome to Memories!</h1>
<p>Upload your Google Takeout Location History JSON file to get started.</p>
<form action="/upload" method="post" enctype="multipart/form-data">
<input type="file" name="file" accept=".json">
<input type="submit" value="Upload">
</form>
</body>
</html>