Skip to content

Commit

Permalink
next iteration of design
Browse files Browse the repository at this point in the history
  • Loading branch information
scriptnull committed Dec 28, 2024
1 parent a4b57ce commit d6c237e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Binary file added webapp/src/assets/shinobistack.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions webapp/src/login/AdminLoginPage.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useState } from 'react';
import shinobiStackLogo from '../assets/shinobistack.jpeg';
import shinobiStackLogo from '../assets/shinobistack.png';

const AdminLoginPage = () => {
const [adminSecret, setAdminSecret] = useState('');
Expand All @@ -11,12 +11,12 @@ const AdminLoginPage = () => {
};

return (
<div className="flex items-center justify-center min-h-screen bg-gray-100">
<div className="w-full max-w-md p-8 space-y-6 bg-white rounded-lg shadow-md">
<div className="flex items-center justify-center min-h-screen bg-gray-300">
<div className="w-full max-w-md p-8 space-y-6 bg-white rounded-3xl shadow-md">
<img
src={shinobiStackLogo}
alt="Admin Logo"
className="w-full h-auto mb-4"
className="w-full h-auto mb-4 rounded-3xl"
/>
<h2 className="text-2xl font-bold text-center">gokakshi</h2>
<h3 className="text-1xl text-center">The centralized security platform</h3>
Expand All @@ -28,13 +28,13 @@ const AdminLoginPage = () => {
value={adminSecret}
onChange={(e) => setAdminSecret(e.target.value)}
required
className="block w-full px-4 py-2 mt-1 border rounded-md focus:outline-none focus:ring focus:ring-blue-300"
className="block w-full px-4 py-2 mt-1 border rounded-3xl focus:outline-none focus:ring focus:ring-blue-300"
placeholder="Enter your admin secret"
/>
</div>
<button
type="submit"
className="w-full px-4 py-2 text-white bg-blue-600 rounded-md hover:bg-blue-700 focus:outline-none focus:ring focus:ring-blue-300"
className="w-full px-4 py-2 text-white bg-blue-600 rounded-3xl hover:bg-blue-700 focus:outline-none focus:ring focus:ring-blue-300"
>
Login
</button>
Expand Down

0 comments on commit d6c237e

Please sign in to comment.