-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
63 lines (59 loc) · 2.97 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
<!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">
<title>3R</title>
<link rel="icon" type="image/x-icon" href="https://cdn-icons-png.flaticon.com/512/3135/3135755.png">
<link rel="stylesheet" href="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w==">
<style>
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Hachi+Maru+Pop&family=Hubballi&family=Montserrat:wght@254&family=Open+Sans:wght@326;379&family=Poppins:wght@100&family=Roboto:wght@300;400&family=Rubik+Glitch&display=swap');
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" href="asset/css/main.css">
<link rel="stylesheet" href="asset/css/base.css">
<link rel="stylesheet" href="asset/css/sub-pages.css">
</head>
<body>
<div class="register-page">
<img src="asset/img/contact-bg.png" alt="">
<a href="index.html" class="back-btn">
<i class="fa-solid fa-angle-left"></i>
BACK
</a>
<div class="heading__brand">
<div class="heading__brand__logo"><i class="fa-solid fa-graduation-cap"></i></div>
<div class="heading__brand__slogan"> | 3R</div>
</div>
<div class="register-content">
<h1 class="register-content__heading">SIGN UP</h1>
<div class="register-container">
<div class="register-item">
<input type="text" name="" placeholder="First Name" required id="" class="">
</div>
<div class="register-item">
<input type="text" name="" placeholder="Last Name" required id="" class="">
</div>
<div class="register-item">
<input type="text" name="" placeholder="Student ID" required id="" class="">
</div>
<div class="register-item">
<input type="password" name="" placeholder="Password" required id="" class="">
</div>
<div class="register-item">
<input type="password" name="" placeholder="Confirm Password" required id="" class="">
</div>
<div class="check_agree">
<input class="check_agree__checkbox" type="checkbox">
<p class="check_agree__label">I agree <a href="">Terms and policies</a></p>
</div>
<button class="register-btn"> Register </button>
</div>
<div class="extra-register-content">
<p> Already have an account? <a href="signin.html">Sign in</a> now</p>
</div>
</div>
</div>
</body>
</html>