bitcoin-atm
bitcoin atm for pyc inc.
git clone https://9o.is/git/bitcoin-atm.git
verify-sms.html
(1077B)
1 <div id="verify-sms" class="input-screen hidden">
2
3 <p class="margin-top-50">
4 We sent you a text message with a 6-digit verification code.
5 </p>
6
7 <form
8 name="verifysmsform"
9 ng-submit="verifyPhone()"
10 novalidate>
11
12 <div class="input-container">
13
14 <input
15 class="input input--noblinkcursor"
16 ng-model="session.input_smscode"
17 ui-mask="999-999"
18 placeholder="xxx-xxx"
19 ng-keypad-input="verifysms"
20 type="text"
21 autocomplete="off"
22 readonly
23 required />
24
25 <small
26 class="text-danger"
27 ng-show="session.wrong_smscode">
28
29 Incorrect SMS Code
30 </small>
31
32 </div>
33
34 <button
35 type="submit"
36 ng-disabled="verifysmsform.$invalid"
37 disabler
38 ng-model="loading"
39 class="btn btn-primary solo-btn small">
40
41 Verify
42 </button>
43
44 </form>
45
46 <div ng-keypad="verifysms">
47 <span data-lift="embed?what=/templates-hidden/part/keyboard-numeric"></span>
48 </div>
49
50 <div class="btn-close" ng-click="unwrapInput('verify-phone'); wrapInput('verify-sms')">
51 <h5>GO BACK</h5>
52 </div>
53
54 </div>