-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
105 lines (65 loc) · 3.18 KB
/
home.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
98
99
100
101
102
103
104
105
<?php
include 'login-check.php';
include 'connection.php';
include 'change-pass.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Spotlight</title>
<!-- STYLESHEETS -->
<link rel="stylesheet" href="assets/css/flexboxgrid.min.css" type="text/css">
<link rel="stylesheet" href="assets/css/_font-awesome.min.css.scss" type="text/css">
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
</head>
<body>
<?php include 'navbar.php'; ?>
<section class="section-resized">
<div class="row">
<div class="col-xs-12 bg-gray">
<p id="welcome" class="text-bold">Welcome
<?php echo $_SESSION['login_user'];
?>
</p>
<a class="text-light" href="logout.php">
<button class="btn-default">Log Out</button>
</a>
<button class="grow btn-dark md-trigger" data-modal="modal-1"> Change Password</button>
<span class="text"><b><?php echo $NewpassError; ?></b></span>
<br>
<br>
</div>
</div>
<!--------------MODAL---------->
<div class="row center-xs">
<div class="md-modal-xs md-effect-1" id="modal-1">
<div class="md-content-xs">
<button class="md-close btn-default-fixed">Close me!</button>
<div>
<form action="#" method="post">
<br>
<br>
<label for="text" class="input-anim">
<span class="label__info">New Password</span>
<input type="password" name="passwd" />
<br>
</label>
<input class="btn-default" type="submit" value="Submit" name="submitpass">
</form>
</div>
</div>
</div>
</div>
</div>
<?php include 'index-text.php'; ?>
<div class="row">
<div class="subtitle col-xs-12 start-xs">
<p id="calendar">PREMIERES CALENDAR</p>
<iframe src="https://calendar.google.com/calendar/embed?showTitle=0&showPrint=0&showTabs=0&showCalendars=0&height=600&wkst=1&hl=en&bgcolor=%23ffffff&src=anafilipavc%40gmail.com&color=%23e3e5a9&ctz=Europe%2FLisbon" style="border-width:0" width="800" height="600" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</section>
<?php include 'modal-js.php'; ?>
</body>
</html>