-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (105 loc) · 3.29 KB
/
index.html
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0,user-scalable=no"
/>
<title>Pokénet</title>
<link rel="icon" type="image/x-icon" href="/assets/Pokeball.ico" />
<link rel="stylesheet" href="css/index.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD"
crossorigin="anonymous"
/>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body class="bg-body-tertiary page" style='max-height: fit-content; width: 100vw;'>
<header class="py-3 mb-3 border-bottom shadow">
<div
class="container-fluid d-grid gap-3 align-items-center"
style="grid-template-columns: 1fr 2fr"
>
<a href="/index.html" style="align-self: center; margin: 0">
<button style='border: none; background-color: transparent;'>
<img
alt="Logo"
src="/assets/Pokénet.png"
class="col-lg-4 mb-2 mb-lg-0"
style="width: 10vw; margin: 0"
/>
</button>
</a>
<nav class="container-fluid d-grid gap-3 align-items-end p-0 m-0">
<ul
style="
display: flex;
flex-direction: row;
justify-self: end;
list-style-type: none;
text-decoration: none;
padding: 0;
margin: 0;
"
>
<li>
<a href="/pages/register.html"><button class="btn btn-primary">Register</button></a>
</li>
</ul>
</nav>
</div>
</header>
<main class="container" style='height:fit-content; width: 100%;'>
<div class="row justify-content-center">
<div class="col-md-6">
<div class="card">
<div class="card-header">Login</div>
<div class="card-body">
<form>
<div class="mb-3">
<div class="mb-3">
<label for="email" class="form-label">Email address</label>
<input type="email" class="form-control" id="email" required />
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" required />
</div>
<div class="d-grid">
<button type="submit" class="btn btn-primary"><a href='./pages/dashboard.html' style='text-decoration: none; color: white;'>
Login
</a>
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</main>
<footer class="col-12 bg-dark text-white p-1 mt-5" style="width: 100vw">
<div class="container">
<div class="col ">
<div class="col-md-6 d-flex flex-column justify-content-around">
<h5 class="mb-0">Pokénet</h5>
<p>Connecting trainers from across the globe.</p>
</div>
<nav class="col-md-6 d-flex flex-row">
<ul style='list-style: none; margin: 0; padding: 0;'>
<li class="nav-item">
<a class="nav-link" href="/pages/about.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href='/pages/contact.html'>Contact Us</a>
</li>
</ul>
</nav>
</div>
</div>
</footer>
</body>
</html>