kripto: Added tugas 1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@gmail.com>
This commit is contained in:
Executable
+29
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
function produce_error($string)
|
||||
{
|
||||
echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3c.org/TR/html4/loose.dtd\">\n";
|
||||
echo "<html>\n";
|
||||
echo "<head>\n";
|
||||
echo "<title>Willy Sudiarto Raharjo - Tugas 2 Keamanan Komputer - Semester Gasal 2016/2017</title>\n";
|
||||
echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n";
|
||||
echo "<meta name=\"author\" content=\"Willy Sudiarto Raharjo\">\n";
|
||||
echo "<style type=\"text/css\">\n";
|
||||
echo "@import url(index.css);\n";
|
||||
echo "</style>\n";
|
||||
echo "</head>\n";
|
||||
echo "<body>\n";
|
||||
echo "<div class=\"Error-Title\">\n";
|
||||
echo "Kesalahan\n";
|
||||
echo "</div>\n";
|
||||
echo "<div class=\"Error-Notes\">\n";
|
||||
echo $string . "\n";
|
||||
echo "</div>\n";
|
||||
echo "<div class=\"Link\">\n";
|
||||
echo ":: <a href=\"index.php\" class=\"url\">Kembali ke halaman input</a> ::\n";
|
||||
echo "</div>\n";
|
||||
echo "<div class=\"Info\">\n";
|
||||
echo "Willy Sudiarto Raharjo\n";
|
||||
echo "</div>\n";
|
||||
echo "</body>\n";
|
||||
echo "</html>\n";
|
||||
}
|
||||
Reference in New Issue
Block a user