Viewing file: showSignDocMobile.php (3.65 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>การส่งหนังสือ</title>
<link rel="shortcut icon" href="../source/jquery.mobile-1.4.3/favicon.ico">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,700">
<link rel="stylesheet" href="../source/jquery.mobile-1.4.3/css/themes/default/jquery.mobile-1.4.3.min.css">
<link rel="stylesheet" href="../source/jquery.mobile-1.4.3/_assets/css/jqm-demos.css">
<script src="../source/jquery.mobile-1.4.3/js/jquery.js"></script>
<script src="../source/jquery.mobile-1.4.3/_assets/js/index.js"></script>
<script src="../source/jquery.mobile-1.4.3/js/jquery.mobile-1.4.3.min.js"></script>
<style>
/*These apply across all breakpoints because they are outside of a media query */
table.phone-compare thead th {
background-color: #fff;
}
table.phone-compare thead th h4 {
text-transform: uppercase;
font-size: 0.6em;
margin: 0;
}
table.phone-compare thead th h3 {
font-size: .9em;
margin: -.4em 0 .8em 0;
}
table.phone-compare th.label {
text-transform: uppercase;
font-size: 0.8em;
opacity: 0.5;
padding: 1em .8em;
background-color: #ddd;
}
table.phone-compare tbody tr.photos td {
background-color: #fff;
padding: 0;
}
table.phone-compare tbody tr.photos img {
max-width: 100%;
min-width: 60px;
}
/* Use the target selector to style the column chooser button */
a[href="#phone-table-popup"] {
margin-bottom: 1.2em;
}
/* Show priority 1 at 320px (20em x 16px) */
@media screen and (min-width: 20em) {
.phone-compare th.ui-table-priority-1,
.phone-compare td.ui-table-priority-1 {
display: table-cell;
}
}
/* Show priority 2 at 560px (35em x 16px) */
@media screen and (min-width: 35em) {
.phone-compare th.ui-table-priority-2,
.phone-compare td.ui-table-priority-2 {
display: table-cell;
}
}
/* Show priority 3 at 720px (45em x 16px) */
@media screen and (min-width: 45em) {
.phone-compare th.ui-table-priority-3,
.phone-compare td.ui-table-priority-3 {
display: table-cell;
}
}
/* Manually hidden */
.phone-compare th.ui-table-cell-hidden,
.phone-compare td.ui-table-cell-hidden {
display: none;
}
/* Manually shown */
.phone-compare th.ui-table-cell-visible,
.phone-compare td.ui-table-cell-visible {
display: table-cell;
}
</style>
</head>
<body>
<div data-role="page" class="jqm-demos" data-quicklinks="true">
<div data-role="header" class="jqm-header">
<h2>รายละเอียดการลงนาม</h2>
</div><!-- /header -->
<div role="main" class="ui-content jqm-content">
<?php
$DocID = $_GET['DocID'];
$DrsID = $_GET['DrsID'];
$DlcID = $_GET['DlcID'];
$personId = $_GET['personId'];
?>
<form name="ff" METHOD="POST" action="mobliedetailSign.php">
<div class="ui-field-contain">
<label for="textarea-1">การบันทึกต่อเนื่อง:</label>
<textarea cols="40" rows="8" name="DrsSign" id="DrsSign"></textarea>
</div>
<input type="submit" name="addsend" value="ลงนาม">
<input type="hidden" name="fn" id="fn" value="signDocAction" >
<input type="hidden" name="personId" id="personId" value="<?php echo $personId;?>" >
<input type="hidden" name="DLCID" id="DLCID" value="<?php echo $DlcID;?>" >
<input type="hidden" name="DrsID" id="DrsID" value="<?php echo $DrsID;?>" >
<input type="hidden" name="DocID" id="DocID" value="<?php echo $DocID;?>" >
</form>
</div>
</div>
</body>
</html>
|