This repository has been archived by the owner on Jan 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
75 lines (65 loc) · 2.45 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
//Starting the session
session_start();
$_SESSION;
include("connection.php");
include("functions.php");
already_login($con);
?>
<!DOCTYPE html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>Jukebox | Index</title>
<link rel="shortcut icon" type="image/png" href="assets/favicon.png">
<link rel="stylesheet" href="/src/main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&family=Work+Sans:ital,wght@0,100;0,200;0,400;0,500;0,600;1,100&display=swap" rel="stylesheet">
<script src="src/main.js"></script>
<style>
body {
background-image: url('cdn/background.jpg');
background-repeat: no-repeat;
background-size: 100% 100%;
background-attachment: fixed;
font-family: "Roboto",sans-serif;
font-family: 'Work Sans', sans-serif;
}
</style>
</head>
<body>
<div class="banner">
<div class="navbar">
<div class="logo fade-in">
<a href="index.php"><img src="cdn/logo.png"></a>
</div>
<div class="menu-icons">
<a href="login.php"><img src="assets/login.png" alt="Login"></a>
<a href="signup.php"><img href="signup.php" src="assets/signup.png" alt="Sign Up"></a>
</div>
</div>
<div class="content fade-in">
<h1>MUSIC UNITES US</h1>
<h3 class="waving-text">Join concerts and music events around the world</h3>
<div>
<button id="loginBtn" type="button" class="waving">
LOGIN
</button>
<button id="signupBtn" type="button" class="btn-2">
SIGN UP
</button>
</div>
<div>
<img src="assets/favicon.png" class="favi">
<h5 class = "favitext">© 2021 JUKEBOX</h5>
</div>
<div class="caption">
<h4>
-Live Aid 13/7/1985<br>
Queen performing 'Bohemian Rhapsody'
</h4>
</div>
</div>
</div>
</body>