-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
33 lines (31 loc) · 1.1 KB
/
Copy pathsignup.html
File metadata and controls
33 lines (31 loc) · 1.1 KB
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login | Coluux</title>
<link rel="stylesheet" href="login.css">
</head>
<body>
<div class="main-container">
<div class="login-container">
<img class="logo" src="coluux_red(1).png" alt="">
<h1>Create your account</h1>
<h2>Welcome to Coluux! Sign up to start exploring.</h2>
<form action="">
<label for="Email">Email</label>
<input type="text" name="" id="">
<label for="Password">Password</label>
<input type="text" name="" id="">
<label for="Password">Re-enter Password</label>
<input type="text" name="" id="">
<button>Sign Up</button>
</form>
<div class="create-account">
<p>Already have an account?</p>
<a href="login.html">Log in</a>
</div>
</div>
</div>
</body>
</html>