-
Notifications
You must be signed in to change notification settings - Fork 0
/
news-signup.html
60 lines (60 loc) · 2.75 KB
/
news-signup.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!doctype html>
<html>
<head>
<title>News Signup</title>
<link rel="stylesheet" href="styles/news-grid.css">
</head>
<body>
<div class="header">
<h1 class="logo">NEWS</h1>
<a class="nav-link" href="#">Signin</a>
<a class="nav-link" href="news-signup.html">Signup</a>
</div>
<div class="signup-container">
<h2 class="heading">Sign up</h2>
<form method="post" action="http://jkorpela.fi/cgi-bin/echo.cgi">
<div class="form-element-container">
<div class="form-element">
<label for="name">Name</label>
<input type="text" placeholder="Enter name" value="Putra" id="name" name="name">
</div>
<div class="form-element">
<label for="email">Email</label>
<input type="text" placeholder="Enter email" value="Putra@gmail.com" id="email" name="email">
</div>
<div class="form-element">
<label for="password">Password</label>
<input type="password" placeholder="Enter password" value="" id="password" name="password">
</div>
<div class="form-element">
<label for="color">Favorite Color:</label>
<select name="" id="color" name="color">
<option value="R">Red</option>
<option value="G" selected>Green</option>
<option value="B">Blue</option>
</select>
</div>
<div class="form-element">
<label>Gender</label>
<input type="radio" name="gender" id="male" value="M">
<label class="label-radio" for="male">Male</label>
<input type="radio" name="gender" id="female" value="F" checked>
<label class="label-radio" for="female">Female</label>
</div>
<div class="form-element">
<label for="student">I am a Student</label>
<input type="checkbox" id="student" name="student" value="Y">
</div>
</div>
<div class="form-element">
<label for="about">About me</label>
<textarea name="about" id="about" cols="" rows=""></textarea>
</div>
<input type="submit" value="Signup">
</form>
</div>
<div class="footer">
Copyright 2020
</div>
</body>
</html>