-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
executable file
·53 lines (51 loc) · 2.09 KB
/
Copy pathhome.php
File metadata and controls
executable file
·53 lines (51 loc) · 2.09 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
<?php
/****************************************************************************
* Middlebury Music United *
* This code is proprietary and property of William S. Potter. *
* It has been licensed for use to Middlebury College in this installation. *
* Use of this code requires consent from William S. Potter *
* wp@punkypond.com *
***************************************************************************/
?>
<div id="container">
<header id="fp-header">
<div id="fp-header-text">Middlebury Music United</div>
</header>
<div id="fp-logobar">
<a id="fp-logo"></a>
</div><!-- logobar -->
<div id="fp-main" role="main">
<section>
<div id="fp-login">
<div id="fp-loginline">Musician Login</div>
<div id="fp-loginbox">
<form action="login.php" method="post">
<label for="username">Username</label><br>
<input type="text" autocomplete="off" name="username" placeholder="rliebowitz">@middlebury.edu<br>
<label for="password">Password</label><br>
<input type="password" autocomplete="off" name="password" ><br>
<input type="submit" name="SUBMITLOGIN" class="button" style="margin:10px 0;" value="Log me in!">
</form>
<div class="fp-links">
<a href="?page=musicians" class="fp-content-link">BROWSE PERFORMERS</a>
<a href="?page=calendar" class="fp-content-link">CALENDAR AND EVENTS</a>
</div><!-- links -->
</div><!-- loginbox -->
</div><!-- login -->
<div id="fp-signup">
<div id="fp-signupline">Musician Sign Up</div><!-- signupline -->
<div id="fp-signupbox">
<form action="?page=register" method="post">
<label for="username">Username</label><br>
<input type="text" autocomplete="off" name="username" placeholder="rliebowitz">@middlebury.edu<br>
<label for="password">Password</label><br>
<input type="password" autocomplete="off" name="password" ><br>
<input type="submit" name="SIGNMEUP" class="button" style="margin:10px 0;" value="Sign me up!">
</form>
</div><!-- signupbox -->
</div><!-- signup -->
</section>
</div><!-- main -->
<footer>
</footer>
</div><!-- container -->