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
/********************* | |
* Your CSS credits | |
* Branch CSS | |
*********************/ | |
body { | |
font-family: Arial; | |
font-size: 14px; | |
color: #666666; | |
} |
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
<div style="margin:20px; margin-top:5px"> | |
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>: <input | |
type="button" value="Show" style="width:45px;font- | |
size:10px;margin:0px;padding:0px;" onClick="if | |
(this.parentNode.parentNode.getElementsByTagName('div') | |
[1].getElementsByTagName('div')[0].style.display != '') { |
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
^/Start Blix Document 1.0/^ | |
^/Load stylesheets/^ | |
loadfile.(style.css) | |
loadfile.ifIE(iestyle.css) | |
loadfile.(javascript.js) | |
^/End stylesheets/^ | |
^/Define elements/^ | |
*Name* = ['formname'] |
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
<?php | |
// Define your username and password | |
$username = "USERNAME HERE"; | |
$password = "PASSWORD HERE"; | |
if ($_POST['txtUsername'] != $username || $_POST['txtPassword'] != $password) { | |
?> | |
<h1>Login</h1> | |
You must login to see this private content.<br> | |
<form name="form" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>"> | |
<p><label for="txtUsername">Username:</label> |