| 123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html>
- <head>
- <script src="ajax.js"></script>
- <script src="main.js"></script>
- </head>
- <style>
- .btn {
- width: 22rem;
- height: 8rem;
- font-size: 4rem;
- }
- .ipt {
- width: 80%;
- height: 8rem;
- font-size: 4rem;
- }
- </style>
- <body>
- <input class="ipt" type="number" name="phone" id="phone" />
- <button class="btn" onclick="register();">注册</button>
- <button class="btn" onclick="verify();">发送验证码</button>
- </body>
- </html>
|