test_service d3170b4d1c 1
2023-12-01 15:43:29 +08:00

19 lines
852 B
HTML
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script id="tpl-phone-bind" type="text/template">
<div class="am-padding-xs am-padding-top-sm">
<div class="am-form-group">
<label class="am-u-sm-3 am-form-label form-require">手机号</label>
<div class="am-u-sm-8 am-u-end">
<input id="tel" class="tpl-form-input" name="data[phone]" type="text" placeholder="请输入手机号" required>
</div>
</div>
<div class="am-form-group">
<label class="am-u-sm-3 am-form-label form-require">验证码</label>
<div class="am-u-sm-4">
<input type="text" name="data[captcha]" value="" placeholder="请输入验证码" required>
</div>
<div class="am-u-sm-3 am-u-end">
<button id="captcha" type="button" class="phone am-btn am-btn-default">获取验证码</button>
</div>
</div>
</div>
</script>