Created
August 19, 2015 07:21
-
-
Save AriffAzmi/5628212c2b9aadab1d8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>E-Jakim</title> | |
<!-- Latest compiled and minified CSS --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> | |
<!-- Optional theme --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css"> | |
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"> | |
<script src="//code.jquery.com/jquery-1.10.2.js"></script> | |
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="row"> | |
<form action="submit.php" method="post" enctype="multipart/form-data"> | |
<div class="form-group"> | |
<label for="nama_program">Nama program:</label> | |
<input type="text" id="nama_program" class="form-control" name="namaprogram"> | |
</div> | |
<div class="form-group"> | |
<label for="tempat">Tempat:</label> | |
<input type="text" id="tempat" class="form-control" name="tempat"> | |
</div> | |
<div class="form-group"> | |
<label for="tarikh">Tarikh:</label> | |
<input type="text" class="form-control" id="tarikh" name="tarikh" readonly=""> | |
</div> | |
<div class="form-group"> | |
<label for="kumpulan">Kumpulan:</label> | |
<input type="text" id="kumpulan" class="form-control" name="kumpulan"> | |
</div> | |
<div class="form-group"> | |
<label for="jumlah_hadir">Jumlah hadir:</label> | |
<input type="number" id="jumlah_hadir" class="form-control" name="jumlah_hadir"> | |
</div> | |
<div class="form-group"> | |
<label for="kpi">KPI:</label> | |
<input type="text" id="kpi" class="form-control" name="kpi"> | |
</div> | |
<div class="form-group"> | |
<label for="outcome">Outcome:</label> | |
<input type="text" class="form-control" id="outcome" name="outcome"> | |
</div> | |
<div class="form-group"> | |
<label for="catatan">Catatan:</label> | |
<input type="text" class="form-control" id="catatan" name="catatan"> | |
</div> | |
<div class="form-group"> | |
<label for="fail">Pdf File:</label> | |
<input type="file" class="form-control" id="fail" name="userfile"> | |
<input type="hidden" name="MAX_FILE_SIZE" value="2000000"> | |
</div> | |
<input type="submit" name="upload" class="btn btn-block btn-success" value="Hantar"> | |
<br> | |
<br> | |
<br> | |
</form> | |
</div> | |
</div> | |
<script> | |
$("#tarikh").datepicker({ | |
dateFormat: 'yy-mm-dd' | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment