-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathloginForm.html
More file actions
39 lines (28 loc) · 1 KB
/
loginForm.html
File metadata and controls
39 lines (28 loc) · 1 KB
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
<form action="../server/loginFormBack.php" method="post">
<label>Kullanıcı adı:</label>
<input type="text" name="user_name" id="user_name" value="" placeholder="lütfen kullanıcı adınızı giriniz" autofocus />
<hr>
<label>Parola</label>
<input type="password" name="pass" id="pass" placeholder="parolanızı giriniz" />
<hr>
<label>Cinsiyet</label><br>
<label>Kadın</label>
<input type="radio" checked name="gender" id="gender" value="1" />
<label>Erkek</label>
<input type="radio" name="gender" id="gender" value="2" />
<hr>
<label>Yaşadığı Şehir</label>
<select name="city">
<option value="">Seçin</option>
<option selected value="34">Istanbul</option>
<option value="35">İzmir</option>
</select>
<hr>
<label>Öz geçmiş</label>
<textarea name="cv" id="cv"></textarea>
<hr>
<label>Bülten Aboneliği</label>
<input type="checkbox" name="subsc" id="subsc" value="" />
<hr>
<input type="submit" name="send" id="send" value="Gönder" />
</form>