-
Notifications
You must be signed in to change notification settings - Fork 2
/
uploadevent.php
55 lines (41 loc) · 1.61 KB
/
uploadevent.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>NITRUTSAV 2019</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/mdb.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<style>
.table{
color: white;
text-align: left;
}
</style>
</head>
<body>
<?php include('uploadevent_validation.php'); ?>
<div class="card">
<h5 class="card-header info-color white-text text-center py-4">
<strong>Sign in</strong>
</h5>
<div class="card-body px-lg-5 pt-0">
<form class="text-center" style="color: #757575;" action="uploadevent.php" method="post">
<div class="md-form">
<input type="email" id="email" name="email" class="form-control" placeholder="Email" value="<?php echo $email ?>">
<span class="error"><?php echo $emailErr; ?></span>
</div>
<div class="md-form">
<input type="password" id="password" name="password" class="form-control" placeholder="Password" value="<?php echo $password ?>">
<span class="error"><?php echo $passwordErr; ?></span>
</div>
<button class="btn btn-outline-info btn-rounded btn-block my-4 waves-effect z-depth-0" type="submit">Sign in</button>
<span class="error"><?php echo $ferror; ?></span>
</form>
</div>
</div>
</body>
</html>