Files
stellaamor.com/signin.php
2024-12-29 23:15:27 +01:00

23 lines
950 B
PHP

<?php
/**
* Page details
*/
$page_title = 'Log In or Sign Up: Start Your Dating Journey';
$page_description = 'Log in or create a Stella Amor account. Your path to personalized online dating with advanced matchmaking starts here. Join now!';
include($_SERVER['DOCUMENT_ROOT'] . '/rss/php/includes/header.php');
?>
<div class="login-page">
<div class="login">
<img src="/rss/img/logo.png" alt="Stella Amor" class="logo">
<form method="POST" action="#" id="loginForm">
<input type="text" placeholder="Username" id="username" class="input">
<input type="password" placeholder="Password" id="password" class="input">
<button type="submit" class="login-button">Log In</button>
</form>
<!-- <a href="#" class="forgot-password">Lost your password?</a> -->
<div class="errors" id="loginError"></div>
</div>
</div>
<?php include($_SERVER['DOCUMENT_ROOT'] . '/rss/php/includes/footer.php');?>