-
Notifications
You must be signed in to change notification settings - Fork 0
/
user-repairs-new.html
92 lines (86 loc) · 2.85 KB
/
user-repairs-new.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>User repairs</title>
<link rel="stylesheet" href="styles/style.css" type="text/css" media="screen" />
<link rel="stylesheet" href="styles/style-protected.css" type="text/css" media="screen" />
<link rel="stylesheet" href="styles/style-repairs-new.css" type="text/css" media="screen" />
<link type="text/css" href="jquery-ui-1.8.20.custom/css/redmond/jquery-ui-1.8.20.custom.css" rel="stylesheet" />
<script type="text/javascript" src="jquery-ui-1.8.20.custom/js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="jquery-ui-1.8.20.custom/js/jquery-ui-1.8.20.custom.min.js"></script
</head>
<body>
<header>
<div id="companysLogo">
<h1>Header, logo etc.</h1>
</div>
</header>
<nav id="mainNavigation">
<ul>
<li><a href="index.html">Home Page</a></li>
<li><a href="contact.html">About us/Contact</a></li>
<li><a href="rates.html">Rates</a></li>
<li><a href="prices.html">Our services/Prices</a></li>
<li><a href="#">Log out</a></li>
</ul>
</nav>
<nav id="protectedNavigation">
<ul>
<li><a href="user-data.html">User data</a></li>
<li class="current"><a href="user-repairs.html">Repairs</a></li>
<li><a href="user-help.html">Help</a></li>
</ul>
</nav>
<section id="content" class="protected">
<h2>Pan Filutek</h2>
<script>
$(function() {
$( "#date" ).datepicker();
});
</script>
<form>
<h3>Fill in to order a repair (fields marked with * are required):</h3>
<ol>
<li>
<label for=car>Car: *</label>
<select id=car name=car type=text placeholder="Car" required autofocus>
<option value="1">Ford Mustang, 1990, KR 12345</option>
<option value="2">Fiat 126p, 1970, KRA 0987</option>
</select>
</li>
<li>
<label for=date>Date: *</label>
<input id=date name=date type=text placeholder="Date" required />
</li>
<li>
<label for=description>Description: *</label>
<textarea id=description name=description placeholder="Description" required></textarea>
</li>
</ol>
<button type=submit>Order</button>
</form>
</section>
<footer>
<nav id="footerNavigation">
<ul>
<li><a href="index.html">Home Page</a></li>
<li><a href="contact.html">About us/Contact</a></li>
<li><a href="rates.html">Rates</a></li>
<li><a href="prices.html">Our services/Prices</a></li>
</ul>
</nav>
<nav id="socialFeedsNavigation">
<ul>
<li id="mail"><a href="#">e-mail</a></li>
<li id="rss"><a href="#">RSS</a></li>
<li id="twit"><a href="#">Twitter</a></li>
<li id="g"><a href="">Google+</a></li>
<li id="fb"><a href="#">Facebook</a></li>
<li id="li"><a href="#">LinkedIn</a></li>
</ul>
</nav>
<img src="images/carservice-logo.png" alt="CarService Engin Logo" id="carServiceEnginLogo" />
</footer>
</body>
</html>