-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
139 lines (76 loc) · 3.43 KB
/
contact.html
File metadata and controls
139 lines (76 loc) · 3.43 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Dave Harmon and Assoc</title>
<link href='https://fonts.googleapis.com/css?family=Indie+Flower|Shadows+Into+Light' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/new.css">
<h1 class="name"><a href="test.html">Dave Harmon & Associates</a></h1>
</head>
<nav>
<ul>
<li><a href="test.html">Homepage</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
</nav>
<body>
<div class="wrap">
<ul class="contact_ul">
<li><a href="tel:502-438-3647"><img src="img/phone1.jpg"></a>phone</li>
<li><a href="bowcorp@gmail.com"><img src="img/email.png"></a>email</li>
<li><a href="tel:502-438-3647"><img src="img/address.jpg"></a>address</li>
<li><a href="tel:502-438-3647"><img src="img/social.jpg"></a>social media</li>
</ul>
<!-- form -->
<div class="col-lg-12 col-md-12 col-sm-12" ng-controller="ContactController">
<div class="alert alert-danger" ng-show="error">
<button class="close" data-dismiss="alert">x</button>
<strong>Error!</strong> An error occured while trying to send message.
</div>
<div class="alert alert-success" ng-show="success">
<button class="close" data-dismiss="alert">x</button>
<strong>Success! </strong> Your message was successfully sent.
</div>
<form role="form" name="contactForm">
<div class="form-group" ng-class="{error: contactForm.name.$invalid}">
<label>Full Name</label>
<input class="form-control" type="text" name="name" ng-model="user.name" required="required" placeholder="Your name">
<span class="help-block" ng-show="contactForm.name.$error.required">Required</span>
</div>
<div class="form-group" ng-class="{error: contactForm.email.$invalid}">
<label>Email</label>
<input class="form-control" type="email" name="email" ng-model="user.email" required="required" placeholder="Your email address">
<span class="help-block" ng-show="contactForm.email.$error.required">Required</span>
<span class="help-block" ng-show="contactForm.email.$error.email">Invalid email address</span>
</div>
<div class="form-group" ng-class="{error: contactForm.message.$invalid}">
<label>Message</label>
<textarea class="form-control" rows="5" name="message" ng-model="user.body" required="required" placeholder="Your messsage"></textarea>
<span class="help-inline" ng-show="contactForm.message.$error.required">Required</span>
</div>
<button class="btn btn-primary btn-lg btn-block" ng-click="send()" ng-disabled="contactForm.$invalid">Send</button>
</form>
</div>
</body>
</div>
<footer class="footer">
<div class="container">
<p>4010 Dupont Circle, Suite 226
Louisville, KY 40207
Phone: (502) 896-8006
On Call Cell: (502) 558-5107
Emergency: (502) 377-7720
Fax: (502) 896-8055
email: daveharmon.assoc@yahoo.com</p>
<p>payment methods: employer/private health insurance, employer EAP, Workman's Compensation, Government Sponsored Health Insurance (Medicaid, Medicare, Passport, WellCare, Coventry Care) Self-pay, Some reduced fees.</p>
</div>
<nav>
<ul class="main-nav">
<li><a href="test.html">Homepage</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
</nav>
<p>© 2016 The Bowman Corporation. </p>
</footer>
</html>