1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<div id="login" class="popup">
<h2 class="loginTitle popupHeader">Login</h2>
<form action="<?php echo base_url();?>start/login" method="post">
<ul>
<li>
<label for="username">Username:</label>
<input class="text" type="text" size="20" id="username" name="username" placeholder="Username">
</li>
<li>
<label for="password">Password:</label>
<input class="text" type="password" size="20" id="password" name="password" placeholder="Password">
</li>
</ul>
<div class="bottomMenu">
<!--<button class="popupButton hint btn" onclick="passwordHint('<?php echo base_url(); ?>');">Hint</button>-->
<button class="popupButton submit btn" type="submit">Login</button>
<button class="popupButton hint btn">Hint</button>
<div id='hinttext'>Insert hint text here</div>
</div>
</form>
</div>
|