How to make this index work

Yobo

Member
Apr 30, 2013
31
4
How can i make this index like this:

When i click on the login button they go to the me.php after the revcms checked my database for good username, password, ban.

Here is my code:
Code:
<!DOCTYPE html>
<html>
<head>
<title>Yobo Hotel | Het hotel voor jongeren!</title>
<link rel="shortcut icon" href="resources/img/favicon.ico" type="image/vnd.microsoft.icon" />
<link rel="stylesheet" href="app/tpl/skins/Yobo/resources/css/style.css" style="text/css">
</head>
<body>
   <div id="container-border">
<div id="container">
<div id="logo-container">
<a href="#" id="logo"></a>
<div id="count">
<b>{online}</b> Yobo's online!
</div>
</div>
<div id="content-container">
<div id="content-title">Welkom op Yobo</div>
<div id="content">
<form action="" method="post" autocomplete="off">
<label>Gebruikersnaam <input type="text" name="username" /></label>
<label>Wachtwoord <input type="password" name="password" /></label>
<input type="submit" value="Login" />
</form>
<a href="quickregister" target="_self">
<div id="content-title-register">Nog niet geregistreert?</div>
</a>
</div>
</div>
</div>
</div>
</body>
</html>
 

Attachments

  • Untitled.png
    Untitled.png
    137.9 KB · Views: 10

Leader

github.com/habbo-hotel
Aug 24, 2012
1,011
272
How can i make this index like this:

When i click on the login button they go to the me.php after the revcms checked my database for good username, password, ban.

Here is my code:
Code:
<!DOCTYPE html>
<html>
<head>
<title>Yobo Hotel | Het hotel voor jongeren!</title>
<link rel="shortcut icon" href="resources/img/favicon.ico" type="image/vnd.microsoft.icon" />
<link rel="stylesheet" href="app/tpl/skins/Yobo/resources/css/style.css" style="text/css">
</head>
<body>
  <div id="container-border">
<div id="container">
<div id="logo-container">
<a href="#" id="logo"></a>
<div id="count">
<b>{online}</b> Yobo's online!
</div>
</div>
<div id="content-container">
<div id="content-title">Welkom op Yobo</div>
<div id="content">
<form action="" method="post" autocomplete="off">
<label>Gebruikersnaam <input type="text" name="username" /></label>
<label>Wachtwoord <input type="password" name="password" /></label>
<input type="submit" value="Login" />
</form>
<a href="quickregister" target="_self">
<div id="content-title-register">Nog niet geregistreert?</div>
</a>
</div>
</div>
</div>
</div>
</body>
</html>
I thought revcms always did this.....And if it didnt check Sledmores Better Ban Checker because it does it <3
 

Leader

github.com/habbo-hotel
Aug 24, 2012
1,011
272
Code:
label>Gebruikersnaam <input type="text" name="username" name="log_username" /></label>
<label>Wachtwoord <input type="password" name="password" name="log_password"/></label>
Replace your 2 fields with that
 

Users who are viewing this thread

Top