-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
27 lines (24 loc) · 965 Bytes
/
Copy pathindex.php
File metadata and controls
27 lines (24 loc) · 965 Bytes
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
<?php
include "config.php";
session_start();
include "layouts/header.php";
if(isset($_GET['token']) && strlen($_GET['token']) > 0) {
$_SESSION['access_token'] = $_GET['token'];
}
if (isset($_SESSION['access_token'])) {
header("Location: {$config['home']}webapp/index.php");
} else {
?>
<div id="body-overlay">
<div class="bg"></div>
<div class="bg2"></div>
<div id="content">
<h1 id="big-title">PodDraw</h1>
<p>PodDraw is a free online diagramming application and flowchart maker . You can use it to create UML, entity relationship, org charts, BPMN and BPM, database schema and networks. Also possible are telecommunication network, workflow, flowcharts, maps overlays and GIS, electronic circuit and social network diagrams.</p>
<a id="pod-login" href="login.php">Log in with SSO</a>
</div>
</div>
<div id="fanap-logo"></div>
<?php
}
include "layouts/footer.php";