initial commit
This commit is contained in:
107
app/View/Users/forgotpass.ctp
Normal file
107
app/View/Users/forgotpass.ctp
Normal file
@@ -0,0 +1,107 @@
|
||||
<style>
|
||||
|
||||
* {box-sizing: border-box}
|
||||
|
||||
/* Full-width input fields */
|
||||
input[type=text],
|
||||
input[type=email],
|
||||
input[type=password] {
|
||||
width: 100%;
|
||||
padding: 10px 15px;
|
||||
margin: 0px 0 8px 0;
|
||||
display: inline-block;
|
||||
border: 1px solid #ADB4C2;
|
||||
background: none;
|
||||
border-radius:4px;
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
input[type=email]:focus,
|
||||
input[type=password]:focus {
|
||||
background-color: #ddd;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: 1px solid #f1f1f1;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
/* Set a style for all buttons */
|
||||
button {
|
||||
border-radius:4px;
|
||||
background-color: #4CAF50;
|
||||
color: white;
|
||||
padding: 14px 20px;
|
||||
margin: 8px 0;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
width: 100%;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
opacity:1;
|
||||
}
|
||||
|
||||
/* Extra styles for the cancel button */
|
||||
.googlebtn {
|
||||
padding: 14px 10px;
|
||||
background-color: #ffffff;
|
||||
color:#ADB4C2;
|
||||
box-shadow:0px 0px 10px;
|
||||
}
|
||||
|
||||
/* Float cancel and signup buttons and add an equal width */
|
||||
.googlebtn {
|
||||
float: left;
|
||||
width: 100%;
|
||||
}
|
||||
.signinbtn {
|
||||
float: left;
|
||||
width: 100%;
|
||||
}
|
||||
.orspan {
|
||||
float: left;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
font-weight: bold;
|
||||
line-height:40px;
|
||||
}
|
||||
|
||||
/* Add padding to container elements */
|
||||
.container {
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
/* Clear floats */
|
||||
.clearfix::after {
|
||||
content: "";
|
||||
clear: both;
|
||||
display: table;
|
||||
}
|
||||
|
||||
/* Change styles for cancel button and signup button on extra small screens */
|
||||
@media screen and (max-width: 300px) {
|
||||
.googlebtn, .signinbtn, .orspan {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="col-md-6" style="margin:0px auto;">
|
||||
<form action="<?php echo HTTP_SITE_URL;?>/users/forgotpass" style="border:1px solid #ccc;background:#FFFFFF;" method="POST" autocomplete="off">
|
||||
<div style="padding:15px;">
|
||||
<h5>Forgot Password ?</h5>
|
||||
<?php echo $this->Session->read('system.message'); ?>
|
||||
<br>
|
||||
|
||||
<label for="email" class="label"><b>Enter your Email Address* </b></label>
|
||||
<input type="email" placeholder="Enter your Email Address" name="email" autocomplete="off" required>
|
||||
|
||||
<div class="clearfix">
|
||||
<button type="submit" class="signinbtn btn-primary" name="forgotpassbtn">Send</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
Reference in New Issue
Block a user