24 lines
		
	
	
	
		
			950 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			950 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!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">© 2024 RideAware. All rights reserved.</p>
 | |
|         </footer>
 | |
|     </div>
 | |
| </body>
 | |
| </html>
 | 
