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