-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #289 from prathyastee/main
resolved issue #2
- Loading branch information
Showing
3 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<link rel="stylesheet" href="styles.css"> | ||
<!-- google fonts --> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap" rel="stylesheet"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet"> | ||
|
||
<title>Login Page</title> | ||
</head> | ||
|
||
<body> | ||
|
||
<div class="box"> | ||
<h1>LOGIN</h1> | ||
<form> | ||
<div class="input-box"> | ||
<!--<span class="details">USERNAME</span>--> | ||
<input type="text" placeholder="E-mail/Username" required> | ||
</div> | ||
<div class="input-box-1"> | ||
<!--<span class="details">PASSWORD</span>--> | ||
<input type="password" placeholder="Password" required> | ||
</div> | ||
<button class="btn" role="button">LOGIN</button> | ||
|
||
|
||
</form> | ||
</div> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
body { | ||
font-family: Montserrat; | ||
background-image: url(https://cloud.ctbuh.org/global-news/2022-09/CN_Cluster1_AW.JPG); | ||
color: #ffffff; | ||
} | ||
h1 { | ||
text-align: center; | ||
font-weight: bold; | ||
font-size: 3.5rem; | ||
} | ||
|
||
.box { | ||
height: 400px; | ||
width: 450px; | ||
text-align: left; | ||
position:relative; | ||
background-color:#000000 ; | ||
opacity:0.8; | ||
margin:8% auto; | ||
padding: 1% 5% 5%; | ||
box-shadow: 7px 7px 5px rgba(1, 1, 1, 0.454); | ||
} | ||
.input-box{ | ||
line-height: 2.5; | ||
font-size: 1.3rem; | ||
position: absolute; | ||
left: 35%; | ||
height: 100px; | ||
width: 50px; | ||
|
||
} | ||
.input-box-1{ | ||
line-height: 2.5; | ||
font-size: 1.3rem; | ||
position: absolute; | ||
left: 35%; | ||
top: 40%; | ||
height: max-content; | ||
} | ||
|
||
.btn{ | ||
background: #303032; | ||
border-radius: 999px; | ||
box-shadow: #ffffff 0 10px 20px -10px; | ||
box-sizing: border-box; | ||
color: #FFFFFF; | ||
cursor: pointer; | ||
font-family: Inter,Helvetica,"Apple Color Emoji","Segoe UI Emoji",NotoColorEmoji,"Noto Color Emoji","Segoe UI Symbol","Android Emoji",EmojiSymbols,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans",sans-serif; | ||
font-size: 16px; | ||
font-weight: 700; | ||
line-height: 24px; | ||
opacity: 1; | ||
outline: 0 solid transparent; | ||
padding: 8px 18px; | ||
user-select: none; | ||
-webkit-user-select: none; | ||
touch-action: manipulation; | ||
width: fit-content; | ||
word-break: break-word; | ||
border: 0; | ||
position:absolute; | ||
left: 42%; | ||
top: 60%; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|