Viewing file: signup-admin.php (3.32 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html>
<html>
<head>
<link href="../assets/style.css" rel="stylesheet" />
<link href="../assets/font-awesome.css" rel="stylesheet" />
<title><?php include('title.php') ?></title>
<!-- Meta-Tags -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta name="keywords" content="Sign Up Form">
<style>
body {
background-image: url('../assets/img/hero-slider/slider-1.jpg');
background-size: cover;
}
.background-overlay {
background-color: rgba(0, 0, 0, 0.4); /* Adjust the color and opacity as needed */
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
</style>
<script>
addEventListener("load", function () {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese" rel="stylesheet">
</head>
<body>
<div class="background-overlay"></div>
<div>
<h1>Kateb Hospital Admin Panel - Sign Up</h1>
<!--728x90-->
<div class="clear-loading spinner">
<span></span>
</div>
<!--728x90-->
<div class="w3ls-login box box--big">
<!-- form starts here -->
<form method="post">
<div class="agile-field-txt">
<label style="color: white; font-weight: bold;">Email</label>
<input type="text" name="email" placeholder="Enter Email" required="" />
</div>
<div class="agile-field-txt">
<label style="color: white; font-weight: bold;">Password</label>
<input type="password" name="password" placeholder="Enter Password" required="" id="myInput" />
</div>
<div class="agile-field-txt">
<label style="color: white; font-weight: bold;">Confirm Password</label>
<input type="password" name="password" placeholder="Enter Password" required="" id="myInput" />
<div class="agile_label">
<input id="check3" name="check3" type="checkbox" value="show password" onclick="myFunction()">
<label class="check" for="check3">Show password</label>
</div>
</div>
<!-- script for show password -->
<script>
function myFunction() {
var x = document.getElementById("myInput");
if (x.type === "password") {
x.type = "text";
} else {
x.type = "password";
}
}
</script>
<!-- //end script -->
<input type="submit" name="submit" value="SIGN UP">
</form>
</div>
</div>
</body>
</html>
|