-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign_up.html
157 lines (138 loc) · 3.58 KB
/
sign_up.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up - Bioumjan</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<!-- Left Side with Image -->
<div class="left-side">
<img src="resource/login/sign_up.png" alt="Supplement Image" class="left-image">
<img class="logo"
src="resource/Bioumjan.png" />
</div>
<!-- Right Side with Form -->
<div class="right-side">
<h1 class="form-title">Sign up to Bioumjan</h1>
<form class="signup-form">
<label for="username">Username</label>
<input type="text" id="username" placeholder="Enter your username">
<label for="email">Email</label>
<input type="email" id="email" placeholder="Enter your email">
<label for="password">Password</label>
<input type="password" id="password" placeholder="Enter your password">
<button type="submit" class="submit-btn">CREATE ACCOUNT</button>
</form>
<p class="login-text">Already have an account? <a href="login.html" class="login-link">Login</a></p>
</div>
</div>
</body>
</html>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
/* Container */
.container {
display: flex;
height: 100vh;
width: 100%;
}
/* Left Side */
.left-side {
flex: 1;
background-color: #f5f5f5;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.left-image {
width: 100%;
height: 100%;
object-fit: cover;
}
.logo {
position: absolute;
top: 5%;
left: 5%;
width: 10%;
font-size: 18px;
font-weight: bold;
color: #333;
font-family: 'Courier New', Courier, monospace;
}
/* Right Side */
.right-side {
flex: 1;
margin: auto;
/* padding: 40px 60px;*/
display: flex;
flex-direction: column;
justify-content: center;
}
.form-title {
text-align: center;
color: rgba(0, 0, 0, 0.85);
font-size: 20px;
font-family: Roboto;
font-weight: 500;
line-height: 24px;
word-wrap: break-word;
margin-bottom: 20px;
color: #333;
}
.signup-form {
width: 70%;
height: auto;
margin: auto;
}
.signup-form label {
font-size: 14px;
font-weight: bold;
margin: 10px 0 5px;
color: #555;
}
.signup-form input {
width: 100%;
margin-top: 5px;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 5px;
}
.submit-btn {
width: 100%;
background-color: #000;
color: #fff;
padding: 10px;
border: none;
border-radius: 100px;
cursor: pointer;
text-transform: uppercase;
font-weight: bold;
}
.submit-btn:hover {
background-color: #333;
}
.login-text {
margin-top: 10px;
font-size: 14px;
color: #555;
text-align: center;
}
.login-link {
color: #000;
text-decoration: none;
font-weight: bold;
}
.login-link:hover {
text-decoration: underline;
}
</style>