forked from temurchichua/UnilabPythonDevelopment
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
Latest commit
38 lines (35 loc) · 1.53 KB
/
Copy pathforms.html
File metadata and controls
38 lines (35 loc) · 1.53 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
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<title>ეს არის html ფორმების დემო</title>
</head>
<body>
<form>
<fieldset>
<legend><h3>რეგისტრაციის ფორმა</h3></legend>
<label>სახელი <inputtype="text" name="username"></label><br/>
<label>კოდური სიტყვა <inputtype="password" name="password"></label><br/>
</fieldset>
<legend>
<strong>გაქვთ თუ არა გამოცდილება?</strong>
</legend>
<inputtype="radio" name="xp" value="yes" />კი<br/>
<inputtype="radio" name="xp" value="no"/> არა<br/>
<legend>
<strong>რომელი დღეები გირჩევნია?</strong>
</legend>
<inputtype="checkbox" name="days" value="weekdays" />სამუშაო<br/>
<inputtype="checkbox" name="days" value="weekends"/>უქმე<br/>
<textareaname="additional_comment" cols="50" rows="10" placeholder="აქ შეგიძლიათ დაწეროთ დამატებითი კომენტარი"></textarea><br/>
<label>საყვარელი პოკემონი :
<selectname="pokemon">
<option>Charizard </option>
<option>Gengar </option>
<option>Greninja </option>
<option>Pikachu</option>
</select></label>
<inputtype="submit" name=submit" value="რეგისტრაცია">
</form>
</body>
</html>