You've already forked codeigniter_test
							
							
		
			
				
	
	
		
			64 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!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>Login</title>
 | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
| <meta name="description" content="">
 | |
| <meta name="author" content="">
 | |
| <link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>css/login.css" />
 | |
| <link href="<?php echo base_url(); ?>bootstrap/css/bootstrap.css" rel="stylesheet">
 | |
| <style type="text/css">
 | |
|       body {
 | |
|         padding-top: 40px;
 | |
|         padding-bottom: 40px;
 | |
|         background-color: #f5f5f5;
 | |
|       }
 | |
| 
 | |
|       .form-signin {
 | |
|         max-width: 300px;
 | |
|         padding: 19px 29px 29px;
 | |
|         margin: 0 auto 20px;
 | |
|         background-color: #fff;
 | |
|         border: 1px solid #e5e5e5;
 | |
|         -webkit-border-radius: 5px;
 | |
|            -moz-border-radius: 5px;
 | |
|                 border-radius: 5px;
 | |
|         -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
 | |
|            -moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
 | |
|                 box-shadow: 0 1px 2px rgba(0,0,0,.05);
 | |
|       }
 | |
|       .form-signin .form-signin-heading,
 | |
|       .form-signin .checkbox {
 | |
|         margin-bottom: 10px;
 | |
|       }
 | |
|       .form-signin input[type="text"],
 | |
|       .form-signin input[type="password"] {
 | |
|         font-size: 16px;
 | |
|         height: auto;
 | |
|         margin-bottom: 15px;
 | |
|         padding: 7px 9px;
 | |
|       }
 | |
| 
 | |
|     </style>
 | |
| 	<link href="<?php echo base_url(); ?>bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
 | |
| </head>
 | |
| <body>
 | |
| <div class="container">
 | |
| 
 | |
|       <form class="form-signin" action="<?php echo base_url(); ?>admin/login_auth" method="post">
 | |
| 	  <?php if(isset($login_info)) {
 | |
| 	  echo'<div class="alert alert-error">';
 | |
| 	  echo $login_info ;
 | |
| 	  echo'</div>';
 | |
| 	  }
 | |
| 	  ?>
 | |
|         <h2 class="form-signin-heading">Sign in</h2>
 | |
|         <input type="text" class="input-block-level" placeholder="Username" name="username" required>
 | |
|         <input type="password" class="input-block-level" placeholder="Password" name="password" required>
 | |
|         <button class="btn btn-large btn-primary" type="submit">Sign in</button>
 | |
|       </form>
 | |
| 
 | |
|     </div>
 | |
| </body>
 | |
| </html>
 | 
