You've already forked codeigniter_test2
first commit
This commit is contained in:
53
application/views/login.php
Normal file
53
application/views/login.php
Normal file
@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>Login Form</title>
|
||||
|
||||
<link href="../../css/style.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<div id="wrapper">
|
||||
|
||||
|
||||
<div class="user-icon"></div>
|
||||
<div class="pass-icon"></div>
|
||||
|
||||
|
||||
|
||||
<form name="loginform" class="form" action="validasi" method="post">
|
||||
|
||||
|
||||
<div class="header">
|
||||
<h1>Login</h1>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<p>Email</p>
|
||||
<input name="username" type="text" class="input" value="Username" onfocus="{this.value = '';}" onblur="if (this.value == '') {this.value = 'Username';}"/> <br /><br />
|
||||
<p>Password</p>
|
||||
<input name="password" type="password" class="input" value="Password" onfocus="{this.value = '';}" onblur="if (this.value == '') {this.value = 'Password'}" />
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="footer">
|
||||
<input type="submit" name="submit" value="Login" class="button" />
|
||||
</div>
|
||||
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user