Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
173 changes: 173 additions & 0 deletions assets/css/forget.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,173 @@
/* =============
GENERAL RESET
================ */

* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}

*::after {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}

*::before {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}

body {
background: #e5e5e5;
}


/* ================================
VARAIABLE FOR EASY STORAGE OF VALUE
=================================== */

:root {
--h2: #16172D;
}

.form-container {
display: flex;
height: 98vh;
width: 100%;
justify-content: center;
align-items: center;
}

.form-container .form-wrap {
width: 40%;
padding: 4px 10px;
}

.form-container .form-wrap .img {
position: absolute;
width: 53px;
height: 52px;
left: 685px;
top: 89px;
}

.form-container .form-wrap .mic {
position: absolute;
width: 157px;
height: 45px;
left: 631px;
top: 165px;
font-family: Roboto;
font-style: normal;
font-weight: normal;
font-size: 38px;
line-height: 45px;
}

.form-container .form-wrap h2 {
position: absolute;
width: 250px;
height: 48px;
left: 590px;
top: 220px;
font-family: Poppins;
font-style: normal;
font-weight: normal;
font-size: 32px;
line-height: 48px;
text-align: center;
color: var(--h2);
}

.form-container .form-wrap .form-box {
margin: 0px 0px 15px;
}

.form-container .form-wrap .form-box p {
position: absolute;
width: 440px;
height: 39px;
left: 550px;
top: 299px;
font-family: Poppins;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #1A1B2D;
}

.form-container .form-wrap .form-box input[type="text"] {
position: absolute;
width: 360px;
height: 60px;
left: 540px;
top: 320px;
background: #FFFFFF;
border: 0.5px solid #BDBDBD;
box-sizing: border-box;
border-radius: 5px;
}

.form-container .form-wrap .form-submit {
display: flex;
}

.form-container .form-wrap .form-submit input[type="submit"] {
position: absolute;
width: 360px;
height: 60px;
left: 540px;
top: 410px;
background: #67A766;
border-radius: 5px;
}

.contact p {
position: absolute;
width: 90px;
height: 24px;
left: 680px;
top: 540px;
font-family: Poppins;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #828282;
}

.reserved {
position: absolute;
width: 236px;
height: 24px;
left: 620px;
top: 660px;
font-family: Poppins;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 24px;
/* identical to box height */
color: rgba(1, 2, 22, 0.8);
}


/* media queries */

@media all and (max-width: 768px) {
.form-container .form-wrap{
display: block;
width: 100%;
text-align: center;
}

.form-container .form-wrap .form-submit{

width: 60%;

}
}
Binary file added assets/img/laye.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/microAPi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions forget.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/Forget.css">
<title>Forget Password</title>
</head>

<body>

<div class="form-container">
<form action="#" method="POST" class="form-wrap">
<div class="img">
<img src="assets/img/laye.png" class="rounded mx-auto d-block" alt="">
</div>
<div class="mic">
<img src="assets/img/microAPi.png" class="rounded mx-auto d-block" alt="">
</div>
<h2>Reset Password</h2>
<div class="form-box">
<p>Enter the Email address associated with your account</p>
<input type="text" placeholder="">
</div>
<div class="form-submit">
<input type="submit" value="Send Reset Password Email">
</div>
<footer>
<div class="contact">
<a href="#"><p>Contact Us</p></a>
</div>

<div class="reserved">
<p>All right Reserved @MicroApi</p>
</div>
</footer>

</form>
</div>
</body>
</html>