-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignup.html
More file actions
36 lines (25 loc) · 862 Bytes
/
signup.html
File metadata and controls
36 lines (25 loc) · 862 Bytes
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
<html>
<head>
<title>CPU</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,100' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/palette.min.css">
<link rel="stylesheet" href="css/grid.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/form.css">
</head>
<body>
<div class="container">
<div class="form">
<form action="http://circuitsmasher.com/cpu/signup.php" method="post">
<table>
<tr><td>Name: </td><td><input type="text" name="name"></td></tr>
<tr><td>E-mail:</td><td> <input type="text" name="email"></td></tr>
<tr><td colspan="2"><input type="submit"></td></tr>
</table>
</form>
</div>
</div>
</body>
</html>