PhotoShare/views/signinPage.php
2026-04-29 00:42:13 +02:00

79 lines
2.0 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<?php
require_once("../controllers/signin.php");
?>
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- jQuery library -->
<script src="js/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/jquery-ui.css">
<script src="js/jquery.min.js"></script>
<script src="js/jquery-ui.js"></script>
<script>
$(document).ready(function(){
$("#signIn").fadeIn(2000);
});
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>PhotoShare-Sign in Page</title>
</head>
<body class="container" style="background-image:url(css/backImg.jpg)" >
<form action="" method="POST">
<div class="col-sm-3">
</div>
<div class="col-sm-6" id="signIn" style="display:none">
<div class="panel panel-primary" style="color:black">
<div class="panel-heading">
<div class="panel-title">
<h1>
<small>
<font color="azure" >
Join
</font>
</small>
PhotoShare!
<small>
<font color="azure" >
Pick your Clicks...
</font>
</small>
</h1>
</div>
</div>
<div class="panel-body">
<div class="form-group">
<label for="username">
Username:
</label>
<input type="text" name= "username" class="form-control" id="username">
</div>
<div class="form-group">
<label for="pwd">
Password:
</label>
<input type="password" name="pass" class="form-control" id="pwd">
</div>
<div class="form-group">
<input type="submit" id="login" name="login" class="btn btn-primary" value="Login" >
<a href="signupPage.php"> Don't have an account? Sign up Here.</a>
</div>
<div class="form-group">
<label>
<?php echo $error;?>
</label>
</div>
</div>
</div>
</div>
</form>
</body>
</html>