Skip to content

Commit

Permalink
gs
Browse files Browse the repository at this point in the history
  • Loading branch information
neerajrekwar authored Mar 9, 2024
1 parent a32e189 commit 6f398f0
Showing 1 changed file with 25 additions and 12 deletions.
37 changes: 25 additions & 12 deletions form.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,32 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>form</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<script type="module" src="assets/js/script.js" defer></script>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="/src/style.css">
<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=Alata&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./src/output.css">
<title>form</title>
</head>

<body>
<div class="grid h-[100vh] border-4 border-red-400">
<form action="" method="get" class="flex-1 backdrop-blur text-[#fff] border-2 border-black m-auto h-[50vh] w-[65%] rounded-md p-4 ">
<h1 class="text-center font-bold pb-6">Stayed Inform</h1>
<label for="" class="my-auto ">Username</label><br />
<input type="text" name="username" id="" class="my-2 w-[100%] p-2 rounded bg-slate-200" /><br />
<label for="" class="my-auto ">Password</label><br />
<input type="text" name="password" id="" class="my-2 w-[100%] p-2 rounded bg-slate-200" /><br />
</form>
</div>
<div class="grid h-[100vh] border-4 border-red-400">
<form action="" method="get"
class="flex-1 backdrop-blur text-[#fff] border-2 border-black m-auto h-[50vh] w-[65%] rounded-md p-4 ">
<h1 class="text-center font-bold pb-6">Stayed Inform</h1>
<label for="" class="my-auto ">Username</label><br />
<input type="text" name="username" id="" class="my-2 w-[100%] p-2 rounded bg-slate-200" /><br />
<label for="" class="my-auto ">Password</label><br />
<input type="text" name="password" id="" class="my-2 w-[100%] p-2 rounded bg-slate-200" /><br />
</form>
</div>

</body>

</html>

0 comments on commit 6f398f0

Please sign in to comment.