-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathemail.html
28 lines (28 loc) · 870 Bytes
/
email.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
<html>
<head>
<title>E-Mail</title>
</head>
<body>
<div style="background-color:black;color:white;padding:10px;">
<p align="center">
E-Mail Box
</div>
<br />
<form action="http://mixlaab.github.io" method="POST">
<!-- <label>username:</label> -->
<input type="text" placeholder=username name="username" /><br />
<!-- <label>password:</label> -->
<input type="password" placeholder=password name="password" />
<br />
<input type="submit" name="submit" value="Send Mail">
</form>
<form>
<input type="checkbox" name="gender" value="Male" /> Male <br />
<input type="checkbox" name="gender" value="Female" /> Female <br />
</form>
<!-- <form action="http://www.sololearn.com" method="GET">
<input type="text" name="username" /><br />
<input type="password" name="password" />
</form> -->
</body>
</html>