-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
40 lines (40 loc) · 1.19 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta name="description" content="page">
</head>
<body>
<form action="test.py" method="post">
<div>
<label>Username</label><br>
<input type="text" name="username" required placeholder="type unique username">
</div>
<hr>
<div>
<label>Password</label><br>
<input type="password" name="password" placeholder="type a complex pass">
</div>
<hr>
<div>
<label>Mobile</label><br>
<input type="text" name="mobile" placeholder="+20100 (234) 123">
</div>
<hr>
<div>
<label>Email</label><br>
<input type="email" name="email" required placeholder="type your email correctly">
</div>
<hr>
<div>
<label>Subject</label><br>
<input type="text" name="subject" placeholder="type what is in your mind">
</div>
<hr>
<input type="hidden" name="important" value="100020650258">
<input type="submit" value="Send Data">
<input type="reset" value="Empty Form">
</form>
</body>
</html>