landing/templates/index.html

21 lines
685 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 Landing Page</title>
<link rel="stylesheet" href="/static/css/styles.css">
</head>
<body>
<div class="container">
<h1>RideAware</h1>
<h2>Coming Soon!</h2>
<p>Be the first to know when we launch. Subscribe below:</p>
<div class="subscription">
<input id="email-input" type="email" placeholder="Enter your email" required />
<button id="notify-button">Notify Me</button>
</div>
</div>
<script src="/static/js/main.js"></script>
</body>
</html>