first commit

This commit is contained in:
Blake Ridgway 2024-12-29 20:12:21 -06:00
commit 18bcafe29b
8 changed files with 143 additions and 0 deletions

24
templates/index.html Normal file
View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RideAware - Coming Soon</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="/static/styles.css">
</head>
<body>
<div class="container">
<h1 class="display-4 fw-bold">RideAware</h1>
<p class="lead">Our journey begins soon.</p>
<!--<p class="mb-4">Sign up to stay updated!</p>
<form action="#" class="d-flex justify-content-center">
<input type="email" class="form-control me-2" placeholder="Enter your email" required>
<button type="submit" class="btn">Notify Me</button>
</form>-->
<footer>
<p class="text-muted">&copy; 2024 RideAware. All rights reserved.</p>
</footer>
</div>
</body>
</html>