Merge branch 'main' of https://hackethon.ai/hack/HackXlbef/YOLO
commit
77fb173dd2
@ -0,0 +1,35 @@ |
|||||||
|
body { |
||||||
|
margin: 0; |
||||||
|
height: 100vh; |
||||||
|
display: flex; |
||||||
|
justify-content: center; |
||||||
|
align-items: center; |
||||||
|
background-color:#fff |
||||||
|
} |
||||||
|
.login-container{ |
||||||
|
background-color: rgb(126, 87, 174); |
||||||
|
height: 400px; |
||||||
|
width: 500px; |
||||||
|
display: flex; |
||||||
|
border-radius: 10px; |
||||||
|
} |
||||||
|
input{ |
||||||
|
margin: 10px 0px; |
||||||
|
padding: 10px; |
||||||
|
border-radius: 5px; |
||||||
|
border: none; |
||||||
|
} |
||||||
|
form |
||||||
|
{ |
||||||
|
margin: 0 auto; |
||||||
|
width: 300px; |
||||||
|
align-items: center; |
||||||
|
display: flex; |
||||||
|
|
||||||
|
justify-content: center; |
||||||
|
} |
||||||
|
|
||||||
|
.details-container{ |
||||||
|
|
||||||
|
align-items: center; |
||||||
|
} |
@ -0,0 +1,25 @@ |
|||||||
|
<!DOCTYPE html> |
||||||
|
<html lang="en"> |
||||||
|
<head> |
||||||
|
<meta charset="UTF-8"> |
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||||
|
<title>Document</title> |
||||||
|
<link rel="stylesheet" href="login.css"> |
||||||
|
</head> |
||||||
|
<body> |
||||||
|
<div class="login-container"> |
||||||
|
<form action="post"> |
||||||
|
<div class="details-container"> |
||||||
|
<label for="email">Email: </label><br> |
||||||
|
<input type="email" id = "email" name="email" placeholder="example@gmail.com"> |
||||||
|
<br> |
||||||
|
<label for="password">Password: </label><br> |
||||||
|
<input type="password" name="password" id="password"><br> |
||||||
|
<input type="submit" name="login" id="login" value="Login"> |
||||||
|
<p class="text">Don't Have an account?<a href="createAccount.html">Create an Account</a></p> |
||||||
|
|
||||||
|
</form> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</body> |
||||||
|
</html> |
Loading…
Reference in new issue