2020-03-16 15:23:14 +08:00
|
|
|
<?php
|
2023-07-31 16:55:47 +08:00
|
|
|
$page='Home';
|
|
|
|
require 'Header.php';
|
|
|
|
session_start();
|
2020-03-16 15:23:14 +08:00
|
|
|
?>
|
|
|
|
|
2020-10-02 17:02:20 +08:00
|
|
|
<?php
|
2023-07-31 16:55:47 +08:00
|
|
|
// if the user has already logged in, then clicking the LRRS icon should not display the login page (i.e., index.php).
|
2020-10-02 17:02:20 +08:00
|
|
|
if (isset($_SESSION["user_fullname"])) {
|
2023-08-04 18:14:05 +08:00
|
|
|
echo '<div class="alert alert-info"> You\'ve already logged in.</div>';
|
2020-10-02 17:02:20 +08:00
|
|
|
header("Location: Courses.php");
|
2023-08-04 18:14:05 +08:00
|
|
|
exit();
|
2020-10-02 17:02:20 +08:00
|
|
|
}
|
|
|
|
?>
|
2020-03-16 15:23:14 +08:00
|
|
|
|
2021-01-29 17:25:59 +08:00
|
|
|
<br><br><br>
|
2020-03-16 15:23:14 +08:00
|
|
|
|
2021-04-09 14:52:08 +08:00
|
|
|
<div class="row" style="width:85%;margin:auto;">
|
2023-07-31 16:55:47 +08:00
|
|
|
<div class="col-md-4">
|
|
|
|
<br><br>
|
|
|
|
<img src="logo.png" style="width:40%; position:relative; right:-95px; top:1px;">
|
|
|
|
<br><br>
|
|
|
|
<div style="width:20%; position:relative; right:-90px; font-family: Poppins-Regular;">
|
|
|
|
<h1>Lab Report Repository</h1>
|
|
|
|
</div>
|
2020-12-25 21:30:34 +08:00
|
|
|
</div>
|
2023-07-31 17:09:21 +08:00
|
|
|
|
2020-12-25 21:30:34 +08:00
|
|
|
<div style = "position:relative; left:240px; top:-2px;">
|
2023-07-31 16:55:47 +08:00
|
|
|
<h4 class="list-group-item active" style="font-weight:normal;font-family: Poppins-Regular;"> Sign in </h4>
|
|
|
|
<div class="list-group-item">
|
2020-03-16 15:23:14 +08:00
|
|
|
|
2023-07-31 16:55:47 +08:00
|
|
|
<div class="panel-body">
|
2020-03-16 15:23:14 +08:00
|
|
|
|
2023-07-31 16:55:47 +08:00
|
|
|
<form method="post" action="Script.php" name="frm_login">
|
|
|
|
<input type="hidden" name="frm_login" value="true"/>
|
2023-07-31 17:09:21 +08:00
|
|
|
Account name
|
|
|
|
<input type="text" name="user" placeholder="Student Number / Email address" class="form-control" required="required" id="user_name" />
|
2023-07-31 16:55:47 +08:00
|
|
|
<br>
|
|
|
|
Password
|
|
|
|
<input type="password" class="form-control" name="password" placeholder="password" required="required" id="user_password" />
|
2023-07-31 17:09:21 +08:00
|
|
|
<div class="text-left">
|
2023-07-31 16:55:47 +08:00
|
|
|
<br><input type="submit" class="btn-primary" value="Login" id="login_btn">
|
|
|
|
</div>
|
2023-07-31 17:09:21 +08:00
|
|
|
|
|
|
|
<div class="text-left">
|
|
|
|
<span class="txt1">Don't have an account yet?</span>
|
2023-07-31 16:55:47 +08:00
|
|
|
<a class="txt2" href="signup.php" style="font-weight:normal" id="signup_link">Sign Up</a>
|
|
|
|
</div>
|
2020-03-16 15:23:14 +08:00
|
|
|
|
2023-07-31 17:09:21 +08:00
|
|
|
<div class="text-left">
|
|
|
|
<span class="txt1">Forget your password?</span>
|
|
|
|
<a class="txt2" href="recover_password.php" style="font-weight:normal">Reset my password</a>
|
|
|
|
</div>
|
2023-07-31 16:55:47 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
|
|
|
|
if(isset($_SESSION['info_login'])) {
|
|
|
|
echo '<hr><div class="alert alert-danger" role="alert">'.$_SESSION['info_login'].'</div>';
|
2023-07-31 17:09:21 +08:00
|
|
|
$_SESSION['info_login'] = null;
|
2023-07-31 16:55:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// wrong pass
|
|
|
|
if(isset($_SESSION['wrong_pass'])) {
|
|
|
|
echo '<hr><div class="alert alert-danger" role="alert">'.$_SESSION['wrong_pass'].'</div>';
|
2023-07-31 17:09:21 +08:00
|
|
|
$_SESSION['wrong_pass'] = null;
|
2023-07-31 16:55:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(isset($_SESSION['infoChangePassword'])) {
|
|
|
|
echo '<hr><div class="alert alert-danger" role="alert">'.$_SESSION['infoChangePassword'].'</div>';
|
2023-07-31 17:09:21 +08:00
|
|
|
$_SESSION['infoChangePassword'] = null;
|
2023-07-31 16:55:47 +08:00
|
|
|
}
|
|
|
|
?>
|
2023-07-31 17:09:21 +08:00
|
|
|
</form>
|
2023-07-31 16:55:47 +08:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-25 21:30:34 +08:00
|
|
|
</div>
|
2020-10-02 17:02:20 +08:00
|
|
|
</div>
|
2020-03-16 15:23:14 +08:00
|
|
|
|
|
|
|
|
2021-10-20 23:18:16 +08:00
|
|
|
<div id="footer">
|
2023-07-31 16:55:47 +08:00
|
|
|
LRR was originally developed as a <a href="http://lanlab.org/course/2018f/se/homepage.html" style="color:white;">software engineering course project</a> by Mohamed Nor and Elmahdi Houzi. Please submit your suggestions or bug reports to Mr Lan. <a href="./homepage" style="color:white;">More information ...</a>
|
2023-07-31 16:46:25 +08:00
|
|
|
</div>
|
2020-03-16 15:23:14 +08:00
|
|
|
|
2021-01-29 17:25:59 +08:00
|
|
|
</body>
|
2020-03-16 15:23:14 +08:00
|
|
|
|
|
|
|
</html>
|