codeigniter_test2/application/views/user.php

42 lines
1.2 KiB
PHP
Raw Normal View History

2020-01-02 23:07:40 +07:00
<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>