-
Notifications
You must be signed in to change notification settings - Fork 0
/
generator.html
77 lines (76 loc) · 1.68 KB
/
generator.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<html>
<head>
<meta charset="utf-8">
<link type="text/css" rel="stylesheet" href="fonts.css"/>
<link type="text/css" rel="stylesheet" href="trip.css"/>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="tblgen.js"></script>
</head>
<body>
<table id = "tripFormLine">
<tr>
<td>
Тип
</td>
<td>
<select id = "actClass">
<option value = "Plane">Самолет</option>
<option value = "Train">Поезд</option>
<option value = "Bus">Автобус</option>
<option value = "CheckIn">Заселение</option>
<option value = "CheckOut">Выселение </option>
</select>
</td>
</tr>
<tr>
<td>
Откуда
</td>
<td>
<input id = "actPointFrom" placeholder = "Дюссельдорф" type = "text">
</td>
<td>
в
</td>
<td>
<input id = "actPointTimeStart" placeholder = "10:00" type = "text">
</td>
</tr>
<tr>
<td>
Куда
</td>
<td>
<input id = "actPointTo" placeholder = "Барселона" type = "text">
</td>
<td>
в
</td>
<td>
<input id = "actPointTimeFinish" placeholder = "12:30" type = "text">
</td>
</tr>
<tr>
<td>
Дата
</td>
<td>
<input id = "actDate" placeholder = "02.05 Чт" type = "text">
</td>
</tr>
</tr>
<tr>
<td>
Цена
</td>
<td>
<input id = "actPrice" type = "text"> €
</td>
</tr>
</table>
<input id = "btnAddLine" type = "button" value = "Add" onClick = "AddTripLine();">
<br>
<div id = "tripPlan">
</div>
</body>
</html>