-
Notifications
You must be signed in to change notification settings - Fork 0
/
begin.php
97 lines (55 loc) · 1.88 KB
/
begin.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
include('backend/functions.php');
if(isset($_SESSION['email'])){
$status = get_status();
if($status==1){
header("Location:index.php");
}
}
else{
header("Location:login.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<title>Infox | Cryptx</title>
<?php include("frontend/seo.php");?>
<link rel="stylesheet" href="frontend/css/begin.css">
<script type="text/javascript" src="frontend/js/jquery.js"></script>
<!--<script type="text/javascript" src="frontend/js/begin.js"></script>-->
<?php include('frontend/js/begin.php'); ?>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1 id="demo" style="color:#fff; " class="mt-3">Countdowns begins</h1>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<img style="height:240px; width:400px;" src="https://infoxpression.in/obj/logo1.svg" alt="Star" class="mt-5 star ">
</div>
</div>
</div>
<div clas="container">
<div class="row">
<div class="col-md-12 text-center">
<h2 class="byline mt-5 ankit" id="byline">CRYPTX</h2>
</div>
</div>
</div>
<div clas="container">
<div class="row">
<div class="col-md-12 text-center">
<button onclick="contest_begin()" data-placement="top" data-toggle="tooltip" title="Mysteries are yet to be disclosed!" class=" sarthak mt-5 text-center btn btn-md btn-outline-success">START </button>
</div>
</div>
</div>
</body>
</html>