This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>Loader</title> | |
| <meta name="viewport" content="width=device-width initial-scale=1"> | |
| <style> | |
| .loader{ | |
| margin-left: 400px; | |
| margin-top: 250px; | |
| border: 16px solid #0058ff; | |
| border-bottom: 16px solid #0058ff; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>Type writing</title> | |
| <style> | |
| .btn{ | |
| border: none; | |
| background-color: #048bff; | |
| width: 90px; | |
| height: 40px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <?php | |
| session_start(); | |
| $username= "admin"; | |
| $password= "password"; | |
| if (isset($_SESSION['loggedin']) && $_SESSION['loggedin'] == false) { | |
| header("Location: success.php"); |
NewerOlder