mirror of
https://gitlab.com/nekoya/web.git
synced 2025-04-25 21:48:01 +02:00
Merge branch 'main' of https://gitlab.com/nekoya/web
This commit is contained in:
commit
2b8ad510ee
7 changed files with 2107 additions and 6 deletions
2080
package-lock.json
generated
2080
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -13,6 +13,7 @@
|
|||
"ejs": "^3.1.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"body-parser": "^1.19.0",
|
||||
"express": "^4.17.1",
|
||||
"express-session": "^1.17.2",
|
||||
"nodemon": "^2.0.14"
|
||||
|
|
|
@ -17,6 +17,17 @@ body {
|
|||
}
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
width: 5%;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 500px) {
|
||||
.navbar-brand {
|
||||
width: 15vw;
|
||||
height: 15vw;
|
||||
}
|
||||
}
|
||||
|
||||
.nav-color {
|
||||
background-color: #212226;
|
||||
}
|
||||
|
|
|
@ -20,6 +20,15 @@
|
|||
background-color: #1b1c1e;
|
||||
}
|
||||
|
||||
.nav-color {
|
||||
background-color: #212226;
|
||||
}
|
||||
|
||||
.nav-radius {
|
||||
border-bottom-left-radius: 20px;
|
||||
border-bottom-right-radius: 20px;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
background-color: #212226;
|
||||
color: white;
|
||||
|
@ -230,11 +239,11 @@
|
|||
<input class="form-control input-sm text-center" id="exampleDropdownFormEmail1"
|
||||
placeholder="Email address" type="email">
|
||||
</div>
|
||||
<a href="otp.html"><input class="btn btn-resetpassword btn-primary" style="width: 100%;"
|
||||
<a href="otp"><input class="btn btn-resetpassword btn-primary" style="width: 100%;"
|
||||
type="button" value="Reset Password"></a>
|
||||
<br><br>
|
||||
<div class="hoverforgot-1 text-center">
|
||||
<a href="login.html">Or Return to Login</a>
|
||||
<a href="login">Or Return to Login</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<link href="https://fonts.googleapis.com" rel="preconnect">
|
||||
<link crossorigin href="https://fonts.gstatic.com" rel="preconnect">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" type="text/css" href="Style-index.css">
|
||||
<link rel="stylesheet" type="text/css" href="css/Style-index.css">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/lazysizes/5.3.2/lazysizes.min.js"></script>
|
||||
</head>
|
||||
|
||||
|
@ -107,7 +107,7 @@
|
|||
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="product-grid"
|
||||
<div class="product-grid"
|
||||
data-isotope='{ "itemSelector": ".product-item", "layoutMode": "fitRows"}'>
|
||||
<div class="product-item men">
|
||||
<div class="product product_filter">
|
||||
|
|
|
@ -337,7 +337,7 @@
|
|||
</div>
|
||||
|
||||
<div class="hoverlogin-1 text-center">
|
||||
<a href="register.html">Don't have an account?? Click Here to Sign Up!!</a>
|
||||
<a href="register">Don't have an account?? Click Here to Sign Up!!</a>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
@ -228,7 +228,7 @@
|
|||
<div class="text-resend">
|
||||
<small>
|
||||
Didn't Get An Email??
|
||||
<a class="text-decoration-none" href="forgot-password.html">Resend Code</a>
|
||||
<a class="text-decoration-none" href="forgot-password" style="color: white;">Resend Code</a>
|
||||
</small>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue