-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
28 lines (25 loc) · 855 Bytes
/
index.php
File metadata and controls
28 lines (25 loc) · 855 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
require_once("models/config.php");
$lang_req = isset($_GET["lang"]) ? "?lang=".$_GET["lang"] : "";
$pg_title = "$websiteName";
$body_classes = "index signinup";
include("models/inc/gl_header.php");
?>
<div id="content" class="container" role="main" tabindex="0">
<div class="row">
<div id="main-content" class="col-md-8 col-md-offset-2" role="main">
<?php
include("models/inc/language_select.php");
?>
<div class="well">
<p class="login_reg">test
<a href="login.php<?php echo $lang_req ?>" class="btn btn-success"><?php echo lang("ACCOUNT_LOGIN_PAGE") ?></a>
<a href="register.php<?php echo $lang_req ?>" class="btn btn-success"><?php echo lang("ACCOUNT_REGISTER_PAGE") ?></a>
</p>
</div>
</div>
</div>
</div>
<?php
include("models/inc/gl_footer.php");
?>