-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignUp.html
159 lines (158 loc) · 4.87 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
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
153
154
155
156
157
158
159
<!Doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Silken Whispers</title>
<link rel="icon" type="image/x-icon" href="logo2.png">
<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=Merienda:wght@300;400;500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<style>
/*{color:#FFEADD;font-family:pritzious, sans-serif;font-size:0.9em;text-align:center;}
header;nav;section;content;post;footer*/
:root{
--bg-color: #EFECE9;
--text-color: #050505;
--sub1-color: #DDD9CE;
--nav-color: #AC9CBD;
--sub2-color: #610C27;
--font: 'Merienda', cursive;
}
input{
height: 40px;
width: 300px;
box-shadow: var(--sub2-color);
}
p, h3{
padding-top: 4px;
}
.Content_Container{
margin-top: 230px;
background-color: var(--sub1-color);
text-align: center;
align-items: center;
box-shadow: 1px 1px 7px 1px var(--sub2-color);
padding-bottom: 1%;
padding-top: 5px;
margin-left: 33%;
margin-right: 33%;
height: auto;
border-radius: 8px;
margin-bottom: 205px;
}
#name_input{
margin-top: 10px;
margin-bottom: 10px;
}
#password_input{
margin-top: 10px;
}
.log_in{
margin-top: 10px;
margin-bottom: 10px;
background-color: var(--sub2-color);
color: var(--sub1-color);
height: 40px;
width: 300px;
font-size: 120%;
}
.log_in:hover{
color: var(--sub2-color);
background-color: var(--sub1-color);
}
#login{
text-decoration: none;
color: var(--sub1-color);
}
#login:hover{
color: var(--sub2-color);
}
#login:hover::after{
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
.fo-last {
/*display: flex;
flex-wrap: nowrap;*/
background-color: var(--nav-color);
width: 100%;
height: 20px;
}
.fo-last-img{
/* display: inline-flex; */
display: inline;
font-size: 20px;
background-color: var(--nav-color);
margin-bottom: 0%;
}
#left{
padding-left: 39%;
}
#right{
padding-right: 35.80%;
}
.fo-last-text{
display: inline;
background-color: var(--nav-color);
width: 100%;
font-size: 18px;
text-align: center;
}
</style>
</head>
<body>
<header class="header">
<div class="logo">
<img src="logo2.png" alt="CosmicCuties" >
</div>
<nav class="navbar">
<ul>
<li><a href="Homepage.html" class="nav-item" >Home</a></li>
<li><a href="category.html" class="nav-item" >Category</a></li>
<li><a href="aboutus.html" class="nav-item" >About Us</a></li>
<li><a href="brands.html" class="nav-item" >Brands</a></li>
<li><a href="beautyadvice.html" class="nav-item" >Beauty Advice</a></li>
<li><a href="" class="nav-item" >Contact Us</a></li>
<li><a href="LogIn.html"><i class="material-icons" id="btnlogin">account_circle</i></a></li>
</ul>
</nav>
</header>
<div class="Content_Container">
<h3 style="text-align: center; font-weight: 100;">SignUp to Silken Whispers</h3>
<form action="" style="border: 1px var(--sub2-color);">
<input id="name_input" type="name" placeholder="Username" >
<br>
<input id="email_input" type="email" placeholder="Email address or Phone number" >
<br>
<input id="password_input" type="password" placeholder="Password" >
<br>
<input id="password_input" type="password" placeholder="Confirm Password" >
<br>
<button class="log_in" ><a href="Homepage.html" target="_blank" id="login">Create account</a></button>
<br>
<hr>
<p>Already a member?</p>
<button class="log_in" ><a href="LogIn.html" target="_blank" id="login">LogIn</a></button>
</form>
</div>
<div class="fo-last">
<div class="fo-last-img" id="left">
<img src="fo-last-removebg-preview (2) (1) (1).png">
</div>
<div class="fo-last-text">
SILKEN WHISPERS
</div>
<div class="fo-last-img" id="right">
<img src="fo-last-removebg-preview (2) (1) (1).png">
</div>
</div>
</body>
</html>