-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (45 loc) · 1.99 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
<html>
<head>
<title>Realtime Chat App | Catalyst</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<link rel="stylesheet" href="assets/css/style.css?ver=0.1">
</head>
<body>
<div class="wrapper">
<section class="form signup">
<header>Realtime chat App</header>
<form action="#">
<div class="error-txt">This is an error message</div>
<div class="name-details">
<div class="field input">
<label>First Name</label>
<input type="text" placeholder="First Name">
</div>
<div class="field input">
<label>Last Name</label>
<input type="text" placeholder="Last Name">
</div>
</div>
<div class="field input">
<label>Email</label>
<input type="email" placeholder="Email Address">
</div>
<div class="field input">
<label>Password</label>
<input type="password" placeholder="Password...">
<i class="fas fa-eye"></i>
</div>
<div class="field image">
<label>Select Image</label>
<input type="file">
</div>
<div class="field button">
<input type="submit" value="Continue to Chat">
</div>
</form>
<div class="link">Already signed up? <a href="login.html">Login now</a></div>
</section>
</div>
<script src="assets/js/password-show-hide.js?ver=0.1"></script>
</body>
</html>