updated login page styling

This commit is contained in:
2025-09-04 15:53:13 +03:00
parent 28ffe00464
commit b887ac2624
3 changed files with 77 additions and 11 deletions

View File

@ -48,7 +48,11 @@ const Login = () => {
</video>
</div>
<div className="login-right">
<div className="login-block">
<h2 className="login-logo-block">
I'm logo!!
</h2>
{/* <img className="login-logo-block" src="./myautag.png" alt="logo" /> */}
<div className="login-login-block">
<h2>
Login
</h2>
@ -79,16 +83,22 @@ const Login = () => {
showError={passwordEmpty}
errorMessage="Please enter your password"
/>
<button type="submit"
style={{
display: "flex",
marginTop: "10px"
}}
>
<button type="submit" className="login-button">
Login
</button>
</form>
</div>
<div className="login-links-block">
<h2>
<a href="https://git.frik.su/Beesquit/picrinth-admin" className="login-link">Frontend</a>
</h2>
<h2>
<a href="https://git.frik.su/Beesquit/picrinth-server" className="login-link">Backend</a>
</h2>
<h2>
<a href="https://git.frik.su/Beesquit" className="login-link">Creator profile</a>
</h2>
</div>
</div>
</div>
);