93 lines
2.5 KiB
PHP
Executable File
93 lines
2.5 KiB
PHP
Executable File
<?php include('../inc/header.php'); ?>
|
|
<div id="home"></div>
|
|
<div id="landing" class="fullpage">
|
|
<div class="main-banner">
|
|
<img src="assets/myles-logo.png">
|
|
<div class="main-banner-buttons">
|
|
<a href="#donate">Donate</a>
|
|
<a href="#joinus">Join</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="about" class="fullpage">
|
|
<div class="panel">
|
|
<h1>About Miles</h1>
|
|
<img src="assets/myles.png" height="200">
|
|
<p>About box description</p>
|
|
</div>
|
|
<div class="container">
|
|
<div>
|
|
<ol>
|
|
<li>Let's work to make San Jose more affordable</li>
|
|
<p></p>
|
|
<li>Develop District 3 and Downtown San Jose</li>
|
|
<p></p>
|
|
<li>San Jose Police Dept. Reforms and Improvements</li>
|
|
</ol>
|
|
</div>
|
|
<div class="read-more">
|
|
<a class="button" href="/policies.php">Read more</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="joinus" class="fullpage">
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>Join</h1>
|
|
</div>
|
|
<div class="banner">
|
|
<form action="/subscribe.php" method="POST">
|
|
<div>
|
|
<input type="text" name="full_name" placeholder="Full Name" required>
|
|
</div>
|
|
<div>
|
|
<input type="email" name="email" placeholder="Email" required>
|
|
</div>
|
|
<div>
|
|
<input type="tel" name="phone" placeholder="Phone Number" required>
|
|
</div>
|
|
<div>
|
|
<button type="submit">Stay Notified!</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="donate" class="fullpage">
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>Donate</h1>
|
|
</div>
|
|
<div class="banner">
|
|
<div>
|
|
<h2>What is your contribution?</h2>
|
|
</div>
|
|
<div class="donate-buttons">
|
|
<form action="https://www.paypal.com/donate" method="POST" target="_top">
|
|
<input type="hidden" name="business" value="9RCQDWAKC8LYW">
|
|
<input type="hidden" name="no_recurring" value="1">
|
|
<input type="hidden" name="currency_code" value="USD">
|
|
<button name="amount" value="10" type="submit">$10</button>
|
|
<button name="amount" value="20" type="submit">$20</button>
|
|
<button name="amount" value="50" type="submit">$50</button>
|
|
<button name="amount" value="100" type="submit">$100</button>
|
|
<button type="submit">Other</button>
|
|
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="contact" class="fullpage">
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>Contact</h1>
|
|
</div>
|
|
<div class="banner">
|
|
<h2>For any further inquiries please email</h2>
|
|
<h2>contact@mileslinden.com</h2>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php include('../inc/footer.php'); ?>
|