-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.py
58 lines (57 loc) · 2.31 KB
/
home.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from __main__ import app
@app.route('/')
def home():
return '''
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PlanMaxxer</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<nav class="navbar" style="background-color: #3bdddb;">
<div class="container-fluid" >
<span class="navbar-brand mb-0 h1">PlanMaxxer</span>
</div>
</nav>
<main class="flex-shrink-0" style="padding: 2%;">
<h1>Modules</h1>
<div class="row row-cols-1 row-cols-md-3 g-4">
<div class="col">
<div class="card">
<img src="/static/icons/weather.svg" class="card-img-top w-25" alt="...">
<div class="card-body">
<h5 class="card-title">Weather</h5>
<p class="card-text">Check the weather for today, this week, next week, or last month.</p>
<a href="/weather" class="btn btn-primary">View Weather</a>
</div>
</div>
</div>
<div class="col">
<div class="card">
<img src="/static/icons/calendar.svg" class="card-img-top w-25" alt="...">
<div class="card-body">
<h5 class="card-title">Calendar</h5>
<p class="card-text">View your plans today, create plans, or count the days.</p>
<a href="/calendar" class="btn btn-primary">View Calendar</a>
</div>
</div>
</div>
<div class="col">
<div class="card">
<img src="/static/icons/wardrobe.svg" class="card-img-top w-25" alt="...">
<div class="card-body">
<h5 class="card-title">Wardrobe</h5>
<p class="card-text">View all the clothes that you own, or add new ones.</p>
<a href="/wardrobe" class="btn btn-primary">View Wardrobe</a>
</div>
</div>
</div>
</div>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>
'''