bitcoin-atm
bitcoin atm for pyc inc.
git clone https://9o.is/git/bitcoin-atm.git
error-phone.html
(850B)
1 <div id="error-phone" class="input-screen hidden">
2
3 <form
4 name="errorphoneform"
5 ng-submit="sendPhoneError()"
6 novalidate>
7
8 <div class="input-container margin-top-100">
9 <input
10 class="input input--noblinkcursor"
11 ng-model="session.phone"
12 ui-mask="(999) 999-9999"
13 placeholder="(xxx) xxx-xxxx"
14 ng-keypad-input="errorphone"
15 type="text"
16 autocomplete="off"
17 readonly
18 required />
19
20 </div>
21
22 <button
23 type="submit"
24 ng-disabled="errorphoneform.$invalid"
25 disabler
26 ng-model="loading"
27 class="btn btn-primary solo-btn small">
28
29 Send
30 </button>
31
32 </form>
33
34 <div ng-keypad="errorphone">
35 <span data-lift="embed?what=/templates-hidden/part/keyboard-numeric"></span>
36 </div>
37
38 <div class="btn-close" ng-click="wrapInput('error-phone')">
39 <h5>GO BACK</h5>
40 </div>
41 </div>