-
Notifications
You must be signed in to change notification settings - Fork 0
/
320success.php
34 lines (25 loc) · 1.11 KB
/
320success.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
<?php
session_start();
require "database/connection.php";
require "header.php";
?>
<body>
<section class="container-fluid login-wrapper pt-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="login-form">
<a href="javascript:history.back();" style="font-size: 1.4rem;"><i class="bi bi-arrow-left" style="margin-right: .5rem;"></i> Csc320 Project</a>
<img src="./assets/img/easylearn/congrats.jpg" style="border-radius: 10px;" class="pre-login-img img-responsive mt-5">
<form id="registration_form" class="mt-0">
<p>You have successfully updated your Project.</p>
<div class="form-group mt-4 text-center">
<a href="320-index.php" class="form-control getStarted-btn">Go to Index</a>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<?php require "footer.php"; ?>