-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.html
136 lines (126 loc) · 4.37 KB
/
admin.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Admin</title>
<link rel="stylesheet" href="./public/styles/styles.css" />
<script defer src="./public/js/scripts.js"></script>
<!-- Font Awesome -->
<script
src="https://kit.fontawesome.com/27b39b2da2.js"
crossorigin="anonymous"
></script>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Navigation Bar -->
<header class="top-header">
<div class="logo-container">
<a href="./index.html">
<img src="./public/images/DOLLAR$ & $EN$E LOGO.png" alt="site-logo" />
</a>
</div>
<nav class="navbar">
<ul class="nav-links">
<li><a href="./index.html">HOME</a></li>
<li><a href="./financial-tracker.html">FINANCIAL TRACKER</a></li>
<li><a href="./credit-score.html">CREDIT SCORE</a></li>
<li><a href="./resources.html">RESOURCES</a></li>
<li><a href="./contact.html">CONTACT</a></li>
<li><a href="./login.html">PROFILE</a></li>
</ul>
</nav>
</header>
<!-- Bottom Navigation Bar -->
<header class="bottom-header">
<nav class="navbar-bottom">
<a href="./index.html" class="nav-links-bottom">
<i class="fa-solid fa-house"></i>
<span class="nav-text">Home</span>
</a>
<a href="./financial-tracker.html" class="nav-links-bottom">
<i class="fa-solid fa-coins"></i>
<span class="nav-text">Financial Tracker</span>
</a>
<a href="./credit-score.html" class="nav-links-bottom">
<i class="fa-solid fa-building-columns"></i>
<span class="nav-text">Credit Score</span>
</a>
<a href="./resources.html" class="nav-links-bottom">
<i class="fa-solid fa-book"></i>
<span class="nav-text">Resources</span>
</a>
<a href="./login.html" class="nav-links-bottom">
<i class="fa-solid fa-user"></i>
<span class="nav-text">Profile</span>
</a>
</nav>
</header>
<!-- Wave svg -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 40 1440 250">
<path
fill="#023b58"
fill-opacity="1"
d="M0,64L80,58.7C160,53,320,43,480,69.3C640,96,800,160,960,181.3C1120,203,1280,181,1360,170.7L1440,160L1440,0L1360,0C1280,0,1120,0,960,0C800,0,640,0,480,0C320,0,160,0,80,0L0,0Z"
></path>
</svg>
<!-- Main Body -->
<main>
<section class="section-container margin-space">
<div class="content-wrapper">
<h1 class="h1-title">ADMIN ACCESS</h1>
<!-- Not sure what to put here yet. Login information? -->
<section class="section-container">
<div class="content-wrapper">
<h2 class="h2-title"></h2>
</div>
</div>
</form>
</section>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<section class="footer-container margin-space">
<div class="social-media">
<a href="./contact.html">
<h2 class="footer-h2-title">LET'S CONNECT!</h2>
</a>
<ul class="footer-links">
<li>
<a href="https://github.com/Npcodes1" target="_blank"
><i class="fa-brands fa-github"></i
></a>
</li>
<li>
<a
href="https://www.linkedin.com/in/nicolepayneswe/"
target="_blank"
><i class="fa-brands fa-linkedin"></i
></a>
</li>
<li>
<a href="mailto:[email protected]"
><i class="fa-solid fa-envelope"></i
></a>
</li>
</ul>
</div>
<div class="back-to-top">
<a href="#"><i class="fa-solid fa-circle-arrow-up"></i></a>
</div>
<div class="copyright-wrapper">
<span id="copyright"></span>
</div>
</section>
</footer>
</body>
</html>