Untitled
unknown
plain_text
3 years ago
1.8 kB
4
Indexable
<?php session_start(); if (isset($_SESSION['user_id'])) { header("location:destination/index.php"); } ?> <!doctype html> <html lang="en"> <head> <title>Title</title> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- Bootstrap CSS v5.2.1 --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous"> </head> <body> <div class="container text-center"> <h1 class="h1 text-center d-inline">Login</h1> <a class="text-decoration-none link-dark" href="register.php"><button class="btn btn-warning btn-sm d-inline">Register</button></a> <form class="d-flex flex-column align-items-center w-100" action="account/checkLog.php" method="post"> <input name="username" type="text" class="form-control m-1 w-50" placeholder="Username"> <input name="pass" type="text" class="form-control m-1 w-50" placeholder="Password"> <button type="submit" class="btn btn-primary">Submit</button> </form> </div> <!-- Bootstrap JavaScript Libraries --> <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"> </script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.min.js" integrity="sha384-7VPbUDkoPSGFnVtYi0QogXtr74QeVeeIs99Qfg5YCF+TidwNdjvaKZX19NZ/e6oz" crossorigin="anonymous"> </script> </body> </html>
Editor is loading...