HEX
Server: nginx/1.28.1
System: Linux 10-41-63-61 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64
User: www (1001)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: //www/备份的/ws.umchkw.com/mm.html
<!DOCTYPE html>
<html lang="en">

<head>
    <title>订单页面</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <!-- 导入 Bootstrap 样式 -->
    <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/4.5.3/css/bootstrap.min.css">

    <!-- JavaScript 文件 -->
    <script src="https://cdn.staticfile.org/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://cdn.staticfile.org/popper.js/1.16.0/umd/popper.min.js"></script>
    <script src="https://cdn.staticfile.org/twitter-bootstrap/4.5.3/js/bootstrap.min.js"></script>
</head>

<body>

    <div class="container">
        <h2>订单页面</h2>
        <form>
            <div class="form-group">
                <label for="name">姓名:</label>
                <input type="name" class="form-control" id="name" placeholder="请输入姓名">
            </div>
            <div class="form-group">
                <label for="phone">电话号码:</label>
                <input type="phone" class="form-control" id="phone" placeholder="请输入电话号码">
            </div>
            <div class                <label for="address">地址:</label>
                <textarea class="form-control" id="address" rows="3" placeholder="请输入地址"></textarea>
            </div>
            <table class="table table-bordered">
                <thead>
                    <tr>
                        <th>商品名称</th>
                        <th>单价</th>
                        <th>数量</th>
                        <th>金额</th>
                    </tr>
                </thead>
                <tbody>
                    <tr>
                        <td>商品 A</td>
                        <td>200元</td>
                        <td>2</td>
                        <td>400元</td>
                    </tr>
                    <tr>
                        <td>商品 B</td>
                        <td>100元</td>
                        <td>3</td>
                        <td>300元</td>
                    </tr>
                </tbody>
            </table>
            <button type="submit" class="btn btn-primary btn-block">提交订单</button>
        </form>
    </div>

</body>

</html>