23 lines
914 B
HTML
23 lines
914 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Masina-Dock - Vehicle Maintenance Tracker</title>
|
||
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<div class="card" style="max-width: 500px; margin: 100px auto; text-align: center;">
|
||
|
|
<img src="/static/images/logo.svg" alt="Masina-Dock Logo" style="width: 120px; margin: 20px auto;">
|
||
|
|
<h1>Welcome to Masina-Dock</h1>
|
||
|
|
<p>Your personal vehicle maintenance and fuel economy tracker</p>
|
||
|
|
<div style="display: flex; gap: 20px; justify-content: center; margin-top: 30px;">
|
||
|
|
<a href="/login" class="btn">Login</a>
|
||
|
|
<a href="/register" class="btn btn-success">Register</a>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|