forked from ANSHIKA-26/WordWise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
111 lines (102 loc) · 4.58 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WordWise</title>
<!--favicon-->
<link rel="shortcut icon" type="image/x-icon" href="/images/favi.png" />
<!--font awesome-->
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" /> -->
<!--swiper slider css-->
<!-- <link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" /> -->
<!-- bootstrap icons -->
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"> -->
<!--css-->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="signup.css">
</head>
<body>
<!--header-->
<header class="navbar">
<div class="logo">
<h2><a class="home-link" href="index.html">WordWise</a></h2>
</div>
<nav class="nav-menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Leading Blog</a></li>
<li><a href="start_writing.html">Start Writing</a></li>
<li><a href="category.html">Categories</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact_us.html">Contact Us</a></li>
<li><a href="contact_us.html">Give Feedback</a></li>
</ul>
</nav>
<div class="auth-buttons">
<!-- <a href="#login" class="login-btn" onclick="openForm('login')">Login</a>
<a href="#signup" class="signup-btn" onclick="openForm('signup')">Signup</a> -->
<div class="nav-item dropdown" style="list-style-type: none;">
<button class="dropbtn">
<img width="30px" src="images/profile.png" alt="Profile" class="profile-icon"
onclick="toggleDropdown()">
</button>
<div id="profile-dropdown" class="dropdown-content">
<div class="login-signup-form">
<a href="login.html">Log In</a>
<a href="signup.html">Sign Up</a>
</div>
</div>
</div>
</div>
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox">
<div class="slider">
<img src="https://img.icons8.com/emoji/48/000000/sun-emoji.png" alt="Sun" class="icon sun-icon">
<img src="https://img.icons8.com/emoji/48/000000/crescent-moon-emoji.png" alt="Moon"
class="icon moon-icon">
</div>
</label>
<span id="mode-label">Light Mode</span>
</div>
</header>
<!--header-->
<main>
<div class="container-signup">
<!-- Login Form -->
<div class="box-login">
<div class="top-header">
<h2>Sign Up</h2>
</div>
<div class="input-group">
<div class="input-field">
<label for="Name">Name</label><br>
<input type="text" class="input-box" placeholder="Enter Name">
</div>
<div class="input-field">
<label for="Mail">Email</label><br>
<input type="text" class="input-box" placeholder="Enter Email">
</div>
<div class="input-field">
<label for="Name">Password</label>
<input type="password" class="input-box" placeholder="Enter Password">
</div>
<div class="input-field">
<label for="Name">Confirm Password</label>
<input type="password" class="input-box" placeholder="Confirm Password">
</div>
<div class="submit">
<input type="submit" class="Input-submit" value="SIGN UP">
</div>
</div>
<div class="new">
<span>Already have an account?</span>
<a href="login.html">Log In</a>
</div>
</div>
</div>
</main>
</body>
</html>