-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsignup.html
39 lines (36 loc) · 1.72 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up Here</title>
<link rel="stylesheet" href="css/signup.css">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Pacifico&display=swap" rel="stylesheet">
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
</head>
<body>
<nav class="mainzone">
<ul class="mainnav">
<li><a class="link increasefont" href="index.html">RemDev</a></li>
<li class="push sourcefont"><a class="link" href="index.html">Home</a></li>
<li class="sourcefont"><a class="link" href="search.html">Browse developers</a></li>
<li class="pushleft sourcefont"><a class="link" href="about.html">About Us</a></li>
</ul>
</nav>
<div class="signup-page">
<h2 class="center">Create account</h2>
<div class="form">
<form class="register-form">
<p class="hiredev">Do you want to hire a developer? Go <a class="rmvline" href="">here!</a></p>
<input type="text" placeholder="Full name">
<input type="email" placeholder="Email Address">
<input type="password" placeholder="Password">
<input type="password" placeholder="Repeat password">
<a href="signup.php"><button>Create account</button></a>
<p class="message">Already have an account? <a class="login" href="login.html">Log In</a></p>
</form>
</div>
</div>
</body>
</html>