-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathadd.php
53 lines (52 loc) · 1.14 KB
/
add.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
require_once "config/config.inc";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta author="Antoine Mady">
<title>
<?php print TITLE; ?>
</title>
<?php
require_once "sections/links.php";
?>
</head>
<body>
<?php require_once "sections/menu.php"; ?>
<section class="container">
<div class="row">
<div class="col-md-12">
<ul class="nav nav-tabs" id="myTab">
<li class="nephritis">
<a href="#artists" data-toggle="tab"><h3 class="text-center">Add artist</h3></a>
</li>
<li class="carrot active">
<a href="#albums" data-toggle="tab"><h3 class="text-center">Add album</h3></a>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="tab-content">
<div class="tab-pane nephritis" id="artists">
<?php
require_once "sections/add_artist.php";
?>
</div>
<div class="tab-pane active carrot" id="albums">
<?php
require_once "sections/add_album.php";
?>
</div>
</div>
</div>
</div>
</section>
<?php
require_once "sections/js.php";
?>
</body>
</html>