fix/removed scrolling from login/signup pages
This commit is contained in:
1 parent
cfcfd7778d
commit
c839d023a7
3 files changed
+6
-3
No files matched your search
+2
-1
@@ -1,7 +1,8 @@
|
||||
<%- include("./partials/fileHeader") %>
|
||||
<%- include("./partials/headerStart") %>
|
||||
|
||||
<main>
|
||||
<div class="flex justify-center items-center h-screen">
|
||||
<div class="flex justify-center items-center pt-50">
|
||||
<form action="/login" method="POST">
|
||||
<div class="w-96 p-6 shadow-1g bg-white rounded-md">
|
||||
<h1 class="text-3xl block text-center font-semibold">Login</h1>
|
||||
|
||||
@@ -28,6 +28,6 @@
|
||||
Swal.fire('Error fetching pun', 'Please try again later', 'error');
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</script>`
|
||||
</body>
|
||||
</html>
|
||||
@@ -2,7 +2,7 @@
|
||||
<%- include("./partials/headerStart") %>
|
||||
|
||||
<main>
|
||||
<div class="flex justify-center items-center h-screen">
|
||||
<div class="flex justify-center items-center pt-50">
|
||||
<form action="/signup" method="POST">
|
||||
<div class="w-96 p-6 shadow-1g bg-white rounded-md">
|
||||
<h1 class="text-3xl block text-center font-semibold">Signup</h1>
|
||||
@@ -41,6 +41,8 @@
|
||||
<a href="/login" class="text-indigo-600 font-semibold">Login</a>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<%- include("./partials/footer") %>
|
||||
Reference in new issue
Block a user