-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.php
More file actions
54 lines (38 loc) · 1.2 KB
/
dashboard.php
File metadata and controls
54 lines (38 loc) · 1.2 KB
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
44
45
46
47
48
49
50
51
52
53
54
<?php
//Incluimos el archivo de configuracion
require 'src/config.php';
//Incluimos las funciones
require 'src/include.php';
//Comprobamos si hay que eliminar algun proyecto
ProyectoEliminar();
?>
<html>
<head>
<!-- Head -->
<?php require 'src/theme/head.php'; ?>
<!-- Titulo de la web -->
<title>Dashboard - TilingScan</title>
</head>
<body>
<?php require 'src/theme/menu.php'; ?>
<!-- Portada -->
<div align="center" class="main">
<!-- Espacios -->
<br><br>
<!-- Presentacion -->
<span class="h1">Dashboard</span><br><br>
<span class="h2">Search for an existing project, create a new project or try the app.</span>
<!-- Espacios -->
<br><br><br>
<!-- Botones para buscar o crear uno nuevo -->
<a href="./search" class="dashboard-btn background-blue">Search project</a>
<a href="./new" class="dashboard-btn background-red">Create new project</a>
<a href="./project?id=demo" class="dashboard-btn background-water">Try the app</a>
<!-- Espacios -->
<br><br><br>
</div>
<!-- Espacios -->
<br><br><br>
<?php require 'src/theme/foot.php'; ?>
</body>
</html>