-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactus.aspx
More file actions
96 lines (84 loc) · 4.26 KB
/
Copy pathcontactus.aspx
File metadata and controls
96 lines (84 loc) · 4.26 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
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
93
94
95
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="contactus.aspx.cs" Inherits="contactus" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Give Blood - Contact</title>
<link rel="icon" href="images/logo-1.png" type="image/x-icon" />
<link href="css/style.css" rel="stylesheet" />
<style>
.frame {
width:350px;
margin:auto;
margin-top:60px;
padding: 35px;
margin-bottom:45px;
border:1px solid #ef5350;
box-shadow:10px 10px gray;
}
</style>
</head>
<body bgcolor="#e57373">
<form id="form1" runat="server">
<!--Container1Start-->
<div>
<div style="width:18%; height:170px; background-color:#ff8a80; float:left;"></div>
<div class="container" style="float:left;">
<!--LogoStart-->
<div id="logo">
<img src="images/logo.png" alt="Logo" style="height:80px; " />
</div>
<!--LogoEnd-->
<!--MenuStart-->
<div id="menu">
<asp:Menu ID="Menu1" runat="server" Font-Size="24px" Orientation="Horizontal" >
<Items>
<asp:MenuItem Text="Home" Value="Home" NavigateUrl="~/index.aspx"></asp:MenuItem>
<asp:MenuItem Text="Appointments" Value="Appointments" NavigateUrl="~/Appointments.aspx"></asp:MenuItem>
<asp:MenuItem Text="LogIn" Value="LogIn" NavigateUrl="~/login.aspx"></asp:MenuItem>
<asp:MenuItem Text="About" Value="About" NavigateUrl="~/aboutus.aspx"></asp:MenuItem>
<asp:MenuItem Text="Contact" Value="Contact" NavigateUrl="~/contactus.aspx"></asp:MenuItem>
</Items>
<StaticHoverStyle BorderColor="#FF3300" ForeColor="#FFCDD2" />
<StaticMenuItemStyle ForeColor="White" HorizontalPadding="25px" />
<StaticMenuStyle VerticalPadding="10px" HorizontalPadding="71px" />
</asp:Menu>
</div>
<!--MenuEnd-->
</div>
<div style="width:18%; height:170px; background-color:#ff8a80; float:left;"></div>
</div>
<!--Container1End-->
<!--Container2Start-->
<div>
<div class="container" style="background-color:#eceff1; min-height:500px; float:left; margin-left:18%; margin-right:18%;">
<div class="frame">
<span style="font-size: 30px; color:#f44336; text-align:center;">Quick Contact</span>
<br /><br />
<asp:TextBox ID="name" runat="server" placeholder="Your name..." CssClass="TextBox" />
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" ErrorMessage="*Required Field" ForeColor="Red" ControlToValidate="name" runat="server" />
<br />
<asp:TextBox ID="number" runat="server" placeholder="Your Number" CssClass="TextBox" />
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" ErrorMessage="*Required Field" ForeColor="Red" ControlToValidate="number" runat="server" />
<br />
<textarea runat="server" id="msg" cols="5" placeholder="Your Message..." class="TextBox" style="border-right:1px solid #f44336;" ></textarea> <br />
<asp:RequiredFieldValidator ID="RequiredFieldValidator3" ErrorMessage="*Required Field" ForeColor="Red" ControlToValidate="msg" runat="server" />
<br />
<center>
<asp:button ID="Button1" text="Send" runat="server" style="min-width:85px; background-color: #f44336; color: #fff; border:2px solid red; padding: 5px; float:right;" OnClick="Button1_Click" /> <br />
</center>
</div>
</div>
</div>
<!--Container2End-->
<!--Container3Start-->
<div>
<div class="container" style="background-color:#212121; float:left; margin-left:18%; margin-right:18%;">
<!--FooterStart-->
<div class="footer" >©2019 Company All Rights Reserved.</div>
<!--FooterEnd-->
</div>
</div>
<!--Container3End-->
</form>
</body>
</html>