-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
29 lines (27 loc) · 1.37 KB
/
index.php
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
<?php $subtitle = 'Log In'; ?>
<?php include 'header.php'; ?>
<div id="wrapper">
<aside>
<div id="mddl_scr_block">
<div id="logo"><h1>q</h1></div>
<div class="btn_frame">
<a class="facebook_btn" href="<?php echo $loginUrl ?>">Login with Facebook</a>
</div><!--.btn_frame-->
<div class="dotte">• • •</div>
<form method="post">
<input id="useremail" type="email" name="useremail" placeholder="Email"><br>
<input id="userpass" type="password" name="userpass" placeholder="Password"><br>
<div class="btn_frame left">
<input type="submit" name="logIn" value="Log in" class="orange_btn">
</div><!--.btn_frame-->
</form>
<form action="register.php" method="post">
<div class="btn_frame right">
<input type="submit" name="goToCrtAcc" value="Create an account" class="green_btn">
</div><!--.btn_frame-->
</form>
<!-f-->
<?php logIn('logIn') ?>
</div><!--.mddl_scr_block-->
</aside>
<?php include 'footer.php'; ?>