forked from QuentinCG/OVH-Email-Manager-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
38 lines (30 loc) · 838 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
33
34
35
36
37
38
<?php
/*
* \brief Index page (integrating the main part of the website: config email account)
*
* \author Quentin Comte-Gaz <[email protected]>
* \date 18 July 2016
* \license MIT License (contact me if too restrictive)
* \copyright Copyright (c) 2016 Quentin Comte-Gaz
* \version 1.0
*/
?>
<?php
// Get page name (for header and footer)
$page_name = basename($_SERVER['PHP_SELF']);
include 'header.php';
?>
<div id="content">
<div class="content_item">
<h1>Check your emails</h1>
<p>Go to the <a target="_blank" href="<?php echo $email_server; ?>">webmail</a> to check your emails
(or <a target="_blank" href="informations.php">configure your computer or phone</a>).</p>
<br/>
<?php
include 'check_mail.php';
?>
</div>
</div>
<?php
include 'footer.php';
?>