index3.html 610 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="ajax.js"></script>
  5. <script src="main.js"></script>
  6. </head>
  7. <style>
  8. .btn {
  9. width: 22rem;
  10. height: 8rem;
  11. font-size: 4rem;
  12. }
  13. .ipt {
  14. width: 80%;
  15. height: 8rem;
  16. font-size: 4rem;
  17. }
  18. </style>
  19. <body>
  20. <input class="ipt" type="number" name="phone" id="phone" />
  21. <button class="btn" onclick="register();">注册</button>
  22. <button class="btn" onclick="verify();">发送验证码</button>
  23. </body>
  24. </html>