-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsign-up.php
50 lines (41 loc) · 1.84 KB
/
sign-up.php
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
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<title>Sign Up form</title>
<link rel="stylesheet" type="text/css" href="css/signup.css">
</head>
<body>
<form action="action_page.php" method="post">
<div class="imgcontainer">
<img src="https://res.cloudinary.com/enema/image/upload/v1567243825/schoolchildren-in-botswana-1_eaylcm.jpg" alt="Avatar" class="avatar" height="100" width="50">
</div>
<div class="container">
<label for="uname"><b>Username</b></label>
<input type="text" placeholder="Enter Username" name="uname" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required>
<div class="coursegroup">
<select name="subjects" class="subjects" required>
<option value="">--Please choose a class--</option>
<option value="Web Development">Web Development</option>
<option value="Data Science">Data Science</option>
<option value="AI">Artificial Intelligence</option>
<option value="Machine Learning">Machine Learning</option>
<option value="Oracle DataBase">Oracle DataBase</option>
<option value="Cisco Networking">Cisco Networking</option>
<option value="RedHat Linux">RedHat Linux</option>
<option value="Digital Marketing">Digital Marketing</option>
<option value="Microsoft">Microsoft System Administration</option>
</select>
<button type="submit">Sign Up</button>
<label>
<input type="checkbox" checked="checked" name="remember"> Remember me
</label>
</div>
<div class="container" style="background-color:#f1f1f1">
<button type="button" class="cancelbtn">Cancel</button>
<span class="psw">Forgot <a href="#">password?</a></span>
</div>
</body>
</html>