-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
43 lines (36 loc) · 900 Bytes
/
Copy pathindex.php
File metadata and controls
43 lines (36 loc) · 900 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/**
* @file index.php
* @author jc <jean-charles.le-goff@epitech.eu>
* @date Thu Mar 10 18:34:45 2011
*
* @brief
*
*
*/
session_start();
session_destroy();
include_once 'classes/Renderer.class.php';
$content = '
<div class="step">
1. Log into Dropbox.<br /><br /><br /><br />
<img src="img/dropbox-icon.png" alt="" />
</div>
<div class="step">
2. Get your link to an upload form.<br /><br /><br /><br />
<img src="img/upload.png" alt="" />
</div>
<div class="step">
3. Share the link with your friends.<br />They can send files directly in your Dropbox.<br /><br />
<img src="img/share.png" alt="" />
</div>
</div>
<div id="under_box">
<div id="go">
<a href="auth.php">Let\'s start</a><br />
</div>
';
$renderer = new Renderer();
$renderer->setContent($content);
$renderer->render();
?>