1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>校园活动管理系统 - 注册</title>
- <link rel="stylesheet" href="/static/css/styles.css">
- </head>
- <body>
- <div class="container">
- <h1>用户注册</h1>
- <form id="registerForm" enctype="multipart/form-data">
- <div class="form-group">
- <label for="username">用户名:</label>
- <input type="text" id="username" name="username" required>
- </div>
- <div class="form-group">
- <label for="email">邮箱地址:</label>
- <input type="email" id="email" name="email" required>
- </div>
- <div class="form-group">
- <label for="id_card_image">上传身份证图片:</label>
- <input type="file" id="id_card_image" name="id_card_image" accept="image/*" required>
- </div>
- <button type="submit">注册</button>
- </form>
- <p id="message"></p>
- </div>
- <script src="/static/js/main.js"></script>
- </body>
- </html>
|