-
Notifications
You must be signed in to change notification settings - Fork 1
/
signUp.html
55 lines (52 loc) · 2.51 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
<!DOCTYPE html>
<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">
<link rel="stylesheet" href="../bootstrap-5.0.2-dist/css/bootstrap.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="./signUp.css">
<title>Softwork</title>
</head>
<body>
<nav class="navbar">
<a href="#" class="firstlink text-decoration-none">Softwork</a>
</nav>
<main class="d-flex justify-content-center">
<div class="bordered d-flex align-items-center mt-4">
<h2>Join as a client or freelancer</h2>
<div class="d-flex mt-4">
<section class="p-2" id="client" onclick="changeButton1(this)">
<input type="radio" name="singleoption" id="input1">
<div class="d-flex align-items-center colflex">
<i class="fa fa-user-circle"></i>
<h6 class="mt-3">I'm a client hiring for a <br> project</h6>
</div>
</section>
<section class="ms-4 p-2" id="freelancer" onclick="changeButton2(this)">
<input type="radio" name="singleoption" id="input2">
<div class="d-flex align-items-center colflex">
<i class="fa fa-user-secret"></i>
<h6 class="mt-3">I'm a freelancer looking for <br> work</h6>
</div>
</section>
</div>
<button class="btn mt-4" id="button">
<small><a id="link" href="">Create Account</a></small>
</button>
<small class="mt-4">Already have an account? <a href="./logIn.html" class="green">Log In</a></small>
</div>
</main>
<div class="d-flex align-items-center bottom mt-4 p-5">
<span class="text-white mb-4">© 2015-2022 Softwork Global Inc.</span>
<a href="#" class="text-white mt-2">Terms of Service</a>
<a href="#" class="text-white mt-2">Privacy Policy</a>
<a href="#" class="text-white mt-2">Accessibility</a>
</div>
</body>
</html>
<script src="../bootstrap-5.0.2-dist/js/bootstrap.bundle.js"></script>
<script src="./signUp.js"></script>