Jump to content
MakeWebGames

Recommended Posts

Posted

Hello everyone i have a small problem i am using the login.php default code but i have a problem. i am using the rgrab.jpg images and the others but i am now wanting to add a border to the top of the square just above the title image and i do not know how to do it

here is my login code

 

<?php

session_start();

include "config.php";

global $_CONFIG;

define("MONO_ON", 1);

require "class/class_db_{$_CONFIG['driver']}.php";

$db=new database;

$db->configure($_CONFIG['hostname'],

$_CONFIG['username'],

$_CONFIG['password'],

$_CONFIG['database'],

$_CONFIG['persistent']);

$db->connect();

$c=$db->connection_id;

$set=array();

$settq=$db->query("SELECT * FROM settings");

while($r=$db->fetch_row($settq))

{

$set[$r['conf_name']]=$r['conf_value'];

}

print <<<EOF

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title>Fallencity</title>

<meta name="description" content="fallencity a massive multiplayer online Game">

<meta name="keywords" content="fallencity, fallen-city, dbeckerton, beckerton, fallen-city, apexgaming">

<script language="JavaScript">

<!--

function getCookieVal (offset) {

var endstr = document.cookie.indexOf (";", offset);

if (endstr == -1)

endstr = document.cookie.length;

return unescape(document.cookie.substring(offset, endstr));

}

function GetCookie (name) {

var arg = name + "=";

var alen = arg.length;

var clen = document.cookie.length;

var i = 0;

while (i < clen) {

var j = i + alen;

if (document.cookie.substring(i, j) == arg)

return getCookieVal (j);

i = document.cookie.indexOf(" ", i) + 1;

if (i == 0) break;

}

return null;

}

function SetCookie (name,value,expires,path,domain,secure) {

document.cookie = name + "=" + escape (value) +

((expires) ? "; expires=" + expires.toGMTString() : "") +

((path) ? "; path=" + path : "") +

((domain) ? "; domain=" + domain : "") +

((secure) ? "; secure" : "");

}

function DeleteCookie (name,path,domain) {

if (GetCookie(name)) {

document.cookie = name + "=" +

((path) ? "; path=" + path : "") +

((domain) ? "; domain=" + domain : "") +

"; expires=Thu, 01-Jan-70 00:00:01 GMT";

}

}

// -->

</script>

<script language="JavaScript">

var usr;

var pw;

var sv;

function getme()

{

usr = document.login.username;

pw = document.login.password;

sv = document.login.save;

if (GetCookie('player') != null)

{

usr.value = GetCookie('username')

pw.value = GetCookie('password')

if (GetCookie('save') == 'true')

{

sv[0].checked = true;

}

}

}

function saveme()

{

if (usr.value.length != 0 && pw.value.length != 0)

{

if (sv[0].checked)

{

expdate = new Date();

expdate.setTime(expdate.getTime()+(365 * 24 * 60 * 60 * 1000));

SetCookie('username', usr.value, expdate);

SetCookie('password', pw.value, expdate);

SetCookie('save', 'true', expdate);

}

if (sv[1].checked)

{

DeleteCookie('username');

DeleteCookie('password');

DeleteCookie('save');

}

}

else

{

alert('Please Enter a password or Username');

return false;

}

}

</script>

<style type="text/css">

<!--

body {

background-image:url('http://images.picturesdepot.com/photo/f/future_wallpaper-28891.jpg');}

margin-top: 0px;

margin-bottom: 0px;

font-family:calibri, helvetica, arial, geneva, sans-serif;font-size:12px;color: black;

scrollbar-base-color: #005B70;

scrollbar-arrow-color: #F3960B;

scrollbar-DarkShadow-Color: #000000;

}

a:visited,a:active,a:hover,a:link { color: black;text-decoration: none; }

table,tr,td { font-family:helvetica, arial, geneva, sans-serif;font-size: 12px; }

img { border:none; }

textarea { font-family:helvetica, arial, geneva, sans-serif;font-size:12px;color: black; }

.table2 {

}

.lgrad {

background-image:url(lgrad.jpg);

background-repeat:repeat-y;

width:19px;

}

.linegrad {

background-image:url(linegrad.PNG);

background-repeat:repeat-y;

background-align: center;

width:2px;

}

.rgrad {

background-image:url(rgrad.jpg);

background-repeat:repeat-y;

width:19px;

}

.dgrad {

background-image:url(dgrad.jpg);

background-repeat:repeat-x;

height:38px;

}

.dgradl {

background-image:url(dgradl.jpg);

background-repeat:no-repeat;

height:8px;

width:38px;

}

.dgradr {

background-image:url(dgradr.jpg);

background-repeat:no-repeat;

height:8px;

width:38px;

}

.center {

width:932px;

background-color:#FFFFFF;

vertical-align:top;

text-align:center;

}

.table {

background-color:#000000;

}

.table3 {

background-color:#000000;

}

.table td {

background-color:#DEDEDE;

height:22px;

}

.table3 td {

background-color:#CCCCCC;

}

td .alt {

background-color:#EEEEEE;

height:22px;

}

td .h {

background-image:url(tablehgrad.png);

background-repeat:repeat-x;

font-weight: bold;

background-color: #D6D6D6;

}

.table th {

background-image:url(tablehgrad.png);

background-repeat:repeat-x;

font-weight: bold;

background-color: #D6D6D6;

}

-->

</style></head>

<body onload="getme();">

<center>

<div class="greenBorder" style="display: table; height: 400px; #position: relative; overflow: hidden;">

<div style=" #position: absolute; #top: 50%;display: table-cell; vertical-align: bottom;">

<div class="greenBorder" style=" #position: relative; #top: -50%">

 

<table width="970" border="0" cellpadding="0" valign="middle" cellspacing="0" class="table2">

<tr>

<td class="lgrad"></td>

<td class="center"><img src="fb.jpg" width=600 alt="Fallencity" /><br />

<!-- Begin Main Content -->

EOF;

$IP = ($_SERVER['HTTP_X_FORWARDED_FOR'])

? $_SERVER['HTTP_X_FORWARDED_FOR']

: $_SERVER['REMOTE_ADDR'];

if(file_exists('ipbans/'.$IP))

{

die("<b><font color=red size=+1>Your IP has been banned</font></b></body></html>");

}

$year=date('Y');

print "

<table width=80%>

<tr>

<td width=50%>

<fieldset>

<legend><b>{$set['game_name']}</legend>

{$set['game_description']}

</fieldset>

</td>

<td>

<fieldset>

<legend></legend>";

print "<form action=authenticate.php method=post name=login onsubmit=\"return saveme();\"><b>Username:</b> <input type=text name=username><br>

<b>Password:</b> <input type=password name=password><br>

<br />

</center>

<INPUT TYPE='image' SRC='lbutton.jpg' width='100' BORDER='0' ALT='Submit Form'>

 

</form>

</fieldset></td></tr></table><br>

 

<a href='register.php' title='register'><img src='register_button.png'title='Click-Here' alt='Loading...' />

 

<br />

<i><center><b>Designed By Beckerton Media (&copy {$year}). Game Copyright ©{$year} {$set['game_owner']}<br /></center></i>";

print <<<OUT

</td>

<td class="rgrad"></td>

</tr>

<tr>

<td colspan="3">

<table cellpadding="0" cellspacing="0" border="0" width="100%">

<tr>

<td class="dgradl"> </td>

<td class="dgrad"> </td>

<td class="dgradr"> </td>

</tr>

</table>

</td>

</tr>

</table>

</body>

</html>

OUT;

?>

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...