stylish wizard_details/details.tpl

first icons
This commit is contained in:
Nael 2013-10-21 01:25:05 +02:00
parent de780727d5
commit 8c70b2082e
38 changed files with 66 additions and 7 deletions

View File

@ -20,7 +20,7 @@ class default_page extends SYSTEM\PAGE\Page {
$vars = array();
$vars['js'] = $this->js();
$vars['css'] = $this->css();
$vars['logo_path'] = \SYSTEM\WEBPATH(new PPAGE(), 'default_page/img/World-Of-Warcraft-Logo.png');
$vars['PICPATH'] = \SYSTEM\WEBPATH(new PPAGE(), 'default_page/img/');
$vars = array_merge($vars, \SYSTEM\locale::getStrings(DBD\locale_string::VALUE_CATEGORY_MAINPAGE));
return SYSTEM\PAGE\replace::replaceFile(SYSTEM\SERVERPATH(new PPAGE(),'default_page/default_page.tpl'), $vars);

View File

@ -7,9 +7,9 @@
${js}
</head>
<body style="background: #6699FF;">
<div id="logo" style="text-align: center"><img src="${logo_path}"/></div>
<div id="content_wrapper" style="background: blue; width: 1000px; height: 600px; margin: auto;">
<body style="background: gainsboro;">
<div id="logo" style="text-align: center"><img src="${PICPATH}World-Of-Warcraft-Logo.png"/></div>
<div id="wrapper" style="background: url(${PICPATH}background.jpg); width: 1000px; margin: auto; -webkit-box-shadow: 3px 3px 4px 2px rgba(0, 0, 0, 1); box-shadow: 3px 3px 4px 2px rgba(0, 0, 0, 1); border-radius: 5px;">
<div id="wizard_navbar" class="navbar">
<div class="navbar-inner">
<a class="brand active" href="#">Welcome</a>
@ -17,14 +17,20 @@
<li><a href="#" url="?action=wizard_details">Details</a></li>
<li><a href="#" url="?action=wizard_visuals">Visuals</a></li>
<li><a href="#" url="?action=wizard_friend">Mates n'Guilds</a></li>
<li><a href="#" url="?action=wizard_friend">Skills</a></li>
<li><a href="#" url="?action=wizard_spawn">Spawn</a></li>
<li><a href="#" url="?action=wizard_summ">Summary</a></li>
<li><a href="#" url="?action=wizard_reg">Registration</a></li>
</ul>
</div>
</div>
<div id="content">
welcome
<div id="content_wrapper" style="padding: 10px;">
<div id="content">
welcome
</div>
<div style="clear: both;"></div>
<div id="back" style="float: right;"><img src="${PICPATH}arrow_right.png"/></div>
<div id="next"><img src="${PICPATH}arrow_left.png"/></div>
</div>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

View File

@ -13,6 +13,9 @@ class page_mojotrollz extends \SYSTEM\API\api_default {
public static function action_wizard_friend(){
return new wizard_friend();}
public static function action_wizard_skills(){
return new wizard_skills();}
public static function action_wizard_spawn(){
return new wizard_spawn();}

View File

@ -4,6 +4,7 @@ SYSTEM\autoload::registerFolder(dirname(__FILE__).'/default_page','');
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_details','');
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_visuals','');
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_friend','');
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_skills','');
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_spawn','');
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_summ','');
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_reg','');

View File

@ -1 +1,49 @@
abc
<div id="details_gender" style="float: left; margin: 15px;">
<input type="text" class="form-control input-lg" placeholder="${character_name}">
<br>
<br>
<br>
<img src="${PICPATH}male.png" width="100px"/>
<img src="${PICPATH}female.png" width="100px"/>
</div>
<div id="details_gender" style="float: left; margin: 15px;">
<img src="${PICPATH}human_male.png"/>
<img src="${PICPATH}human_female.png"/>
<img src="${PICPATH}ork_male.png"/>
<img src="${PICPATH}ork_female.png"/>
<br>
<img src="${PICPATH}dwarf_male.png"/>
<img src="${PICPATH}dwarf_female.png"/>
<img src="${PICPATH}undead_male.png"/>
<img src="${PICPATH}undead_female.png"/>
<br>
<img src="${PICPATH}nightelf_male.png"/>
<img src="${PICPATH}nightelf_female.png"/>
<img src="${PICPATH}tauren_male.png"/>
<img src="${PICPATH}tauren_female.png"/>
<br>
<img src="${PICPATH}gnome_male.png"/>
<img src="${PICPATH}gnome_female.png"/>
<img src="${PICPATH}troll_male.png"/>
<img src="${PICPATH}troll_female.png"/>
</div>
<div id="details_class" style="float: left; margin: 15px;">
<img src="${PICPATH}warrior.png"/>
<img src="${PICPATH}hunter.png"/>
<br>
<img src="${PICPATH}paladin.png"/>
<img src="${PICPATH}rogue.png"/>
<br>
<img src="${PICPATH}priest.png"/>
<img src="${PICPATH}mage.png"/>
<br>
<img src="${PICPATH}warlock.png"/>
<img src="${PICPATH}druid.png"/>
</div>
<div id="details_info" style="float: left; margin: 15px;">
Test, dies ist ein
<br>
sehr Hilfreicher
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -16,6 +16,7 @@ class wizard_details extends SYSTEM\PAGE\Page {
$vars = array();
$vars['js'] = $this->js();
$vars['css'] = $this->css();
$vars['PICPATH'] = \SYSTEM\WEBPATH(new PPAGE(),'wizard_details/img/');
$vars = array_merge($vars, \SYSTEM\locale::getStrings(DBD\locale_string::VALUE_CATEGORY_MAINPAGE));
return SYSTEM\PAGE\replace::replaceFile(SYSTEM\SERVERPATH(new PPAGE(),'wizard_details/details.tpl'), $vars);