-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.html
63 lines (48 loc) · 1.17 KB
/
forms.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
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Formlar</title>
</head>
<body>
<form action="/Home/Register">
<p>
Ad <input type="text" name="ad" placeholder="adınızı giriniz" required>
</p>
<p>
Soyad <input type="text" name="soyad" placeholder="soyadınızı giriniz" required>
</p>
<p>
Eposta <input type="email" name="email" required>
</p>
<p>
Beni Hatırla <input type="checkbox" name="benihatirla">
</p>
<p>
Erkek <input type="radio" name="cinsiyet">
Kadın <input type="radio" name="cinsiyet">
</p>
<p>
Hobiler <br>
Sinema <input type="checkbox" name="hobi">
Spor <input type="checkbox" name="hobi">
Kitap Okumak <input type="checkbox" name="hobi">
</p>
<p>
<select name="sehir">
<option>Kocaeli</option>
<option>İstanbul</option>
<option>Ankara</option>
</select>
</p>
<p>
<select multiple name="sehirler">
<option>Kocaeli</option>
<option>İstanbul</option>
<option>Ankara</option>
</select>
</p>
<input type="submit" value="Kaydet">
</form>
</body>
</html>