-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
152 lines (151 loc) · 7.16 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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Fabian Mendoza">
<meta name="description" content="Netxos">
<meta name="keywords" content="HTML, CSS, JS, Web Development, json, git, GitHub">
<title>Netxos</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600&display=swap">
<link href="https://fonts.googleapis.com/css2?family=Audiowide&family=Dokdo&family=Knewave&family=Permanent+Marker&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/mrspecht/cdn/reset.css" media="all">
<link rel="shortcut icon" href="./assets/img/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./assets/css/style.css" media="all">
<link rel="stylesheet" href="./assets/css/responsive-index.css" media="all">
<script src="./assets/js/login.js" type="module"></script>
<script src="./assets/js/common.js" type="module"></script>
</head>
<body>
<header>
<div class="container flex flex-between">
<div class="logo-search flex">
<div class="logo grid">
<a href="#">
<img src="./assets/img/logo.png">
</a>
</div>
<div class="search grid">
<form>
<input type="text" placeholder="Search">
</form>
</div>
</div>
<nav>
<ul class="flex">
<li>
<a href="#">
<p class="nav-item">
<i class="fa-solid fa-mobile-screen-button"></i>
Get the app
</p>
</a>
</li>
<li>
<a href="#">
<p class="nav-item">
<i class="fa-regular fa-lightbulb"></i>
Services
</p>
</a>
</li>
<li>
<a href="#">
<p class="nav-item">
<i class="fa-regular fa-envelope"></i>
Contact
</p>
</a>
</li>
<li>
<a href="#">
<p class="nav-item">
<i class="fa-solid fa-circle-info"></i>
About
</p>
</a>
</li>
</ul>
</nav>
<div class="dropdown">
<button class="dropdown-btn">
<i class="fa-solid fa-bars"></i>
</button>
<div class="dropdown-content">
<a href="#">Get the app</a>
<a href="#">Services</a>
<a href="#">Contact</a>
<a href="#">About</a>
</div>
</div>
</div>
</header>
<main>
<div class="main-container container">
<div class="left-section">
<div class="logo-container">
<h1 class="text-gradient">NETX<span class="logo-nexos"><img src="./assets/img/logo-main.png"></span>S</h1>
<p>Grow your career connecting!</p>
</div>
<div class="form-group">
<input type="text" id="username" placeholder="Enter your username" autocomplete="off" title="Enter: johnsmith" />
<span class="floating-label">Enter: johnsmith</span>
</div>
<div class="form-group">
<input type="password" id="password" placeholder="Enter your password" title="Enter: 123456" />
<span class="floating-label">Enter: 123456</span>
</div>
<div id="error-message" class="error-message"></div>
<div class="button-container">
<button class="login-btn btn">Login</button>
<button class="create-btn btn">Create profile</button>
</div>
<div class="checkbox-container">
<label><input class="remember" type="checkbox" id="remember"> Remember me</label>
<a href="#" class="forgot">Forgot password?</a>
</div>
</div>
<div class="right-section">
</div>
</div>
</main>
<footer>
<section class="container flex flex-between">
<div class="socials">
<ul>
<li>
<a href="#">
<i class="fa-brands fa-facebook-f"></i>
</a>
</li>
<li>
<a href="#">
<i class="fa-brands fa-x-twitter"></i>
</a>
</li>
<li>
<a href="#">
<i class="fa-brands fa-square-instagram"></i>
</a>
</li>
<li>
<a href="#">
<i class="fa-solid fa-envelope"></i>
</a>
</li>
<li>
<a href="#">
<i class="fa-brands fa-youtube"></i>
</a>
</li>
</ul>
</div>
<p class="copyright"><span class="brand">Netxos</span> © 2024</span>
</section>
</footer>
</body>
</html>