forked from students-alumni-cell-iitkgp/sac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
registration-complete.php
42 lines (38 loc) · 1.31 KB
/
registration-complete.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
<?php session_start(); ?>
<html>
<head>
<link rel="stylesheet" href="css/materialize.min.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/materialize.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="_wrapper">
<?php include "navbar.php"; ?>
<div class="container-fluid">
<div class="z-depth-2">
<div class="container">
<div class="container-fluid">
<div align="center">
<h2>Successfully registered!</h2>
</div>
<p class="text_align">
You have successfully registered for the 16th Annual Alumni Meet. We will send you an email when you need to come back here!
</p>
<div class="row">
<div class="col l6">
<a href="./aam.php" class="btn btn-success btn-block">Click here to login</a>
</div>
<div class="col l6">
<a href="./index.php" class="btn btn-success btn-block">Visit Home</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>