

hello guys i need to know how to change my forum login to like these photo (need same igame theme styles)
simple example-
<input id="logbox" name="user" type="user" placeholder="User name or E-mail"/>
<input id="password" name="password" type="password" placeholder="password"/>
<input type="button" value="SINGIN"/>
im using default igame theme and here my forum with header_welcomeblock_guest templates,
<span style="color:white;"><strong>Not a member yet? Why not Sign up today </strong></span>
<br />
<a class="button login" href="{$mybb->settings['bburl']}/member.php?action=login" onclick="$('#quick_login').modal({ fadeDuration: 250, keepelement: true }); return false;"><font color="white"><i style="font-size: 16px;" class="fa fa-check-circle-o fa-fw"></i> Login to account</font></a>
<a class="button2 register" href="{$mybb->settings['bburl']}/member.php?action=register"><font color="white"><i style="font-size: 16px;" class="fa fa-plus-circle fa-fw"></i> Create an account </font></a>
<div class="modal" id="quick_login" style="display: none;">
<form method="post" action="{$mybb->settings['bburl']}/member.php">
<input name="action" type="hidden" value="do_login" />
<input name="url" type="hidden" value="" />
<input name="quick_login" type="hidden" value="1" />
<input name="my_post_key" type="hidden" value="{$mybb->post_code}" />
<table width="100%" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" border="0" class="tborder">
<tr>
<td class="thead" colspan="2"><strong>{$lang->login}</strong></td>
</tr>
{$loginform}
</table>
</form>
</div>
<script type="text/javascript">
$("#quick_login input[name='url']").val($(location).attr('href'));
</script>
im try this steps but that not working https://community.mybb.com/thread-214386.html
~mRX~