Skip to content
Snippets Groups Projects
Commit 393045f7 authored by Rokas Stankunas's avatar Rokas Stankunas
Browse files

Added redirection to login page

parent d15a1b2b
No related branches found
No related tags found
1 merge request!2Resolve "Create Basic HTML Structure"
...@@ -80,10 +80,24 @@ ...@@ -80,10 +80,24 @@
opacity: 0; opacity: 0;
transition: opacity 0.6s ease; transition: opacity 0.6s ease;
} }
.success_message.show { .success_message.show {
display: block; display: block;
opacity: 1; opacity: 1;
}
.login-link {
text-align: center;
margin-top: 1.5rem;
font-size: 0.9rem;
color: #555;
}
.login-link a {
color: #007bff;
text-decoration: none;
}
.login-link a:hover {
text-decoration: underline;
} }
</style> </style>
</head> </head>
...@@ -109,6 +123,10 @@ ...@@ -109,6 +123,10 @@
</form> </form>
<span class="error_text"></span> <span class="error_text"></span>
<div class="success_message">Registration successful! Redirecting...</div> <div class="success_message">Registration successful! Redirecting...</div>
<div class="login-link">
Already have an account? <a href="register.html">Log in</a>.
</div>
</div> </div>
</body> </body>
</html> </html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment