-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
32 lines (26 loc) · 976 Bytes
/
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
30
31
32
<?php
/**
* File of miniTwitter
*
* @author Daniel Plewinski
* @author email: [email protected]
* @link https://github.com/daniel-plewinski/miniTwitter
*/
include 'template/header.php';
if(isset($_SESSION['userID'])){
header("location: twitter_profile.php");
}
?>
<div class="container">
<h1>Twitter</h1>
<div class="btn-group btn-group-justified" role="group" aria-label="...">
<div class="btn-group" role="group">
<a href="twitter_register.php"><button type="button" class="btn btn-default"><div class="glyphicon glyphicon-asterisk"></div> Rejestracja</button></a>
</div>
<div class="btn-group" role="group">
<a href="twitter_login.php"><button type="button" class="btn btn-default"><div class="glyphicon glyphicon-user"></div> Logowanie</button></a>
</div>
</div>
</div>
</body>
</html>