-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsignup.html
More file actions
37 lines (36 loc) · 1.35 KB
/
signup.html
File metadata and controls
37 lines (36 loc) · 1.35 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
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Signup_Page</title>
<link rel="stylesheet" type="text/css" href="signup.css">
</head>
<body style="text-align: center; background : url('ukraine.jpg') center center; background-repeat : no-repeat; background-size : cover;">
<form action="">
<div style="margin-top:100px;">
<h1 style="color: white;">SIGNUP</h1>
<div style="margin-top:20px;">
<input class="first" type="text" placeholder="Name" name="name" >
</div>
<br><br>
<div style="margin-top:10px;">
<input class="first" type="text" placeholder="Registration number" name="regno" >
</div>
<br><br>
<div style="margin-top:10px;">
<input class="first" type="text" placeholder="Event" name="event" >
</div>
<br><br>
<div style="margin-top:5px;">
<input class="first" type="password" placeholder="Password" name="Password" >
</div>
<br><br>
<div style="margin-top:5px;">
<input class="second" type="submit" value="Signup">
</div>
</div>
</form>
</body>
</html>