You've already forked codeigniter_test2
first commit
This commit is contained in:
42
application/views/user.php
Normal file
42
application/views/user.php
Normal file
@ -0,0 +1,42 @@
|
||||
<html>
|
||||
<head>
|
||||
<title><?php echo $judul; ?></title>
|
||||
<link href="../../css/user.css" rel="stylesheet" type="text/css">
|
||||
</head>
|
||||
<body class="bg">
|
||||
<div class="reg">
|
||||
<h3 style="padding-left:20px;padding-top:30px">Insert Data User</h3>
|
||||
<form id="form" action"simpan_user" method="post">
|
||||
<fieldset >
|
||||
|
||||
<table class="tabel">
|
||||
<tr>
|
||||
<td>Nama Lengkap</td>
|
||||
<td><input type="text" name="nama_lengkap"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Username</td>
|
||||
<td><input type="text" name="username"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Password</td>
|
||||
<td><input type="password" name="password"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Email</td>
|
||||
<td><input type="text" name="email"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Alamat</td>
|
||||
<td><textarea name="alamat" style="height: 80px;"></textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td><button>SUBMIT</button></td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user