-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.aspx
78 lines (75 loc) · 3.28 KB
/
home.aspx
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="home.aspx.cs" Inherits="CarRenter.home" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Car Renter</title>
<link href="style/header.css" rel="stylesheet" />
<link href="style/home.css" rel="stylesheet" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script src="scripts/menu.js"></script>
<script src="scripts/home.js"></script>
</head>
<body>
<form id="form1" runat="server">
<div id="headerExtended">
<section id="body">
<header>
<div id="header">
<img id="imgLogo" src="img/logo.png" />
<h1 id="txtLogo">Car Renter</h1>
<ol id="menu">
<asp:Panel runat="server" ID="loggedSpace"></asp:Panel>
<li id="liHome"><a href="home.aspx"><div class="dropMenu">HOME</div></a></li>
<asp:Panel runat="server" ID="logged">
<li id="liCar">
<div class="dropMenu">
CARS
<div class="hide">
<a href="registerCar.aspx">Register</a>
</div>
</div>
</li>
<li id="liRents">
<div class="dropMenu">
RENTS<div class="hide">
<a href="rentCar.aspx">Rent</a>
<a href="reternCar.aspx">Return</a>
</div>
</div>
</li>
</asp:Panel>
<li id="liLogin">
<div class="dropMenu">
LOG IN<div class="hide">
<asp:Panel runat="server" ID="singIn">
<a href="singIn.aspx">Sign In</a>
</asp:Panel>
<asp:Panel runat="server" ID="singOut">
<a href="home.aspx">Sign Out</a>
</asp:Panel>
<a href="singUp.aspx">Sign Up</a>
</div>
</div>
</li>
</ol>
</div>
</header>
<section id="home" class="content">
<asp:DropDownList ID="ddCity" runat="server">
</asp:DropDownList>
<asp:BulletedList ID="lstCars" runat="server">
<asp:ListItem runat="server">
href="#">
<img class="imgHomeCar" src="car/ferrari.jpg" />
<span>Ferrari</span>
<span class="info">Engine: 1.0</span>
<span class="info">Avalible</span>
</>
</asp:ListItem>
</asp:BulletedList>
</section>
</section>
</div>
</form>
</body>
</html>