forked from NoroffFEU/css-frameworks-ca
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (107 loc) · 3.95 KB
/
index.html
File metadata and controls
109 lines (107 loc) · 3.95 KB
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
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>`Sitename`</title>
<link rel="stylesheet" href="src/scss/index.css" />
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"
defer></script>
<script
src="https://kit.fontawesome.com/5e248e42c9.js"
crossorigin="anonymous"></script>
</head>
<body>
<header class="fixed-top">
<nav class="navbar navbar-expand-lg bg-primary">
<div class="container-fluid">
<a class="navbar-brand" href="#">'Sitename'</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/profile/"
>Profile</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="/feed/">Feed</a>
</li>
<li class="nav-item"></li>
<a class="nav-link" href="/index.html">Log Out</a>
</li>
</ul>
<form class="d-flex" role="search">
<input
class="form-control me-2"
type="search"
placeholder="Search"
aria-label="Search" />
<button class="btn btn-outline-success" type="submit">
Search
</button>
</form>
</div>
</div>
</nav>
</header>
<main>
<div class="container position-absolute top-50 start-50 translate-middle">
<div class="row">
<div class="col-md-6 offset-md-3">
<div class="card my-5 shadow-lg rounded-4">
<form class="card-body cardbody-color p-lg-5 shadow-lg rounded-4" action="/profile/">
<div class="text-center">
<img
src="/img/profile.jpg"
class="img-fluid profile-image-pic img-thumbnail rounded-circle my-3"
width="200px"
alt="profile" />
</div>
<div class="mb-3">
<input type="email"class="form-control" id="email" required />
<label for="email" class="form-label"
>Email address</label
>
</div>
<div class="mb-3">
<input
type="password"
id="password"
class="form-control"
required
minlength="8" />
<label class="form-label" for="form2Example2">Password</label>
</div>
<div class="text-center">
<button type="submit" class="btn btn-color px-5 mb-5 w-100">
Login
</button>
</div>
<div
id="emailHelp"
class="form-text text-center mb-5 text-dark">
Not Registered?
<a href="#" class="text-dark fw-bold"> Create an Account</a>
</div>
</form>
</div>
</div>
</div>
</div>
</main>
<footer class="bg-primary primary-color d-flex fixed-bottom justify-content-center p-3">©Copyright 2024</footer>
</body>
</html>