forked from where-the-heart-is/_home-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (141 loc) · 7.04 KB
/
index.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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>athome Property Management System</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/stylesheets/main.css">
<!-- Stylesheets -->
</head>
<body>
<!-- Header -->
<header>
<div class="hero-image">
<div class="hero-text">
<img src="./assets/images/atHome.png" alt="athome logo" class="brand-logo">
<h1>Your personal property manager</h1>
<div class="hero-btn">
<button type="button" name="signup-btn" class="btn" id="signup-button" data-toggle="modal" data-target="#signup-modal">SIGN UP</button>
<button type="button" name="login-btn" class="btn" id="login-button" data-toggle="modal" data-target="#login-modal">LOGIN</button>
</div>
</div>
</div>
</header>
<!-- Main Body -->
<main>
<!-- Signup Modal -->
<div class="modal fade" id="signup-modal" tabindex="-1" role="dialog" aria-labelledby="signup-modal" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h2>Signup Form</h2>
<form id="signup-form">
<div class="form-group">
<label for="first-name">First Name</label>
<input type="text" class="form-control" id="new-account-first_name" placeholder="Enter first name">
</div>
<div class="form-group">
<label for="last-name">Last Name</label>
<input type="text" class="form-control" id="new-account-last_name" placeholder="Enter last name">
</div>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="new-account-email" aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
<label for="inputPassword">Password</label>
<input type="password" class="form-control" id="new-account-password" placeholder="Password">
</div>
<div class="form-group">
<label class="form-check-label">Landlord or Tenant</label>
<select class="form-control" name="" id="new-account-is_landlord">
<option value="true">Landlord</option>
<option value="false">Tenant</option>
</select>
</div>
</div>
<div class="modal-footer">
<button type="button" id="cancel-signup" class="btn" data-dismiss="modal">Close</button>
<button type="button" id="signup" class="btn">Sign up</button>
</div>
</div>
</div>
</div>
<!-- /.Signup Modal -->
<!-- Login Modal -->
<div id="login-modal" class="modal fade bd-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="login" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="login-form form-group">
<form id="form-login">
<h3 class="text-center">Account Login</h3>
<label for="email">Email</label>
<input type="email" class="form-control" id="login-email" placeholder="[email protected]">
<label for="password">Password</label>
<input type="password" class="form-control" id="login-password">
<button type="button" name="login-button" class="btn login-button" id="login">Login</button>
<button type="button" name="cancel-button" class="btn cancel-button" id="cancel-login">Cancel</button>
</form>
</div>
</div>
</div>
</div>
<!-- /.Login Modal -->
<section class="container">
<div class="row features">
<section class="col-xs-12 col-md-4 text-center">
<i class="fa fa-home fa-4x" aria-hidden="true"></i>
<h4>Better Property Management</h4>
<p>Manage your properties and renters conveniently in one location. </p>
</section>
<section class="col-xs-12 col-md-4 text-center">
<i class="fa fa-dollar fa-4x" aria-hidden="true"></i>
<h4>Automated Rent Collection</h4>
<p>Set rent amount and payement dates for all your property tenants. As a tenant, know when deadlines are coming up and pay rent in one place, one method.</p>
</section>
<section class="col-xs-12 col-md-4 text-center">
<i class="fa fa-wrench fa-4x" aria-hidden="true"></i>
<h4>Better Property Management</h4>
<p>Manage and respond to maintenance requests made by your tenants. Keep your renters informed with status updates.</p>
</section>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="row align-items-center">
<section class="col-xs-12 col-md-4 text-center">
<a href="./index.html"><img class="brand-small" src="./assets/images/atHome_white.png" alt="athome logo"/></a>
</section>
<section class="col-xs-12 col-md-4 text-center">
<a href="./index.html"><img class="" src="./assets/images/fair_housing_white.png" alt="athome logo"/></a>
</section>
<section class="col-xs-12 col-md-4 contact text-center">
<h6>Contact</h6>
<h6>(800)555-5555</h6>
<h6>[email protected]</h6>
</section>
</div>
</div>
<div class="copyright text-center">
<p class="copy-title">© Copyright 2017 Where The Heart Is</p>
</div>
</footer>
<!-- Scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<script src="./assets/scripts/global.js" charset="utf-8"></script>
<script src="./assets/scripts/index.js" charset="utf-8"></script>
<script src="./assets/scripts/login.js" charset="utf-8"></script>
</body>
</html>