forked from hodgepodgers/ng-intl-tel-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (97 loc) · 4.24 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html ng-app="ngIntlTelInputApp">
<head lang="en">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ng-intel-tel-input example page</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/intl-tel-input/build/css/intlTelInput.css">
<style>
/*
* @see https://github.com/Bluefieldscom/intl-tel-input#troubleshooting
*/
.intl-tel-input {
display: table-cell;
}
</style>
</head>
<body>
<div class="container" ng-controller="ngIntlTelInputAppController">
<div class="page-header">
<h1>ng-intel-tel-input examples</h1>
<p class="lead">This is a basic demonstration page showcasing the ng-intl-tel-input directive.</p>
</div>
<div class="row">
<div class="col-md-12">
<h2>Basic usage</h2>
<div class="well">
<code><input type="text" name="tel" ng-model="tel" ng-intl-tel-input></code>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<form name="form">
<div class="form-group" ng-class="{'has-error': form.tel.$invalid && form.tel.$touched, 'has-success': form.tel.$valid}">
<label for="tel">Telephone number</label>
<input type="text" class="form-control" id="tel" name="tel" ng-model="tel" ng-intl-tel-input>
<span class="help-block" ng-show="form.tel.$pristine && form.tel.$untouched">Please type a telephone number</span>
<span class="help-block" ng-show="form.tel.$invalid && form.tel.$touched">Invalid :(</span>
<span class="help-block" ng-show="form.tel.$valid && form.tel.$touched">Valid :)</span>
</div>
</form>
</div>
<div class="col-md-6">
<p><strong>Model value</strong></p>
<blockquote>{{tel}}<span ng-if="!tel">N/A</span></blockquote>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2>Setting default country with <code>data-initial-country</code></h2>
<div class="well">
<code><input type="text" name="tel" ng-model="tel" ng-intl-tel-input data-initial-country="gb"></code>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<form name="form2">
<div class="form-group" ng-class="{'has-error': form2.tel.$invalid && form2.tel.$touched, 'has-success': form2.tel.$valid}">
<label for="tel">Telephone number</label>
<input type="text" class="form-control" id="tel-dc" name="tel" ng-model="tel2" ng-intl-tel-input data-initial-country="gb" data-selected-country="selected.country">
<span class="help-block" ng-show="form2.tel.$pristine && form2.tel.$untouched">Please type a telephone number</span>
<span class="help-block" ng-show="form2.tel.$invalid && form2.tel.$touched">Invalid :(</span>
<span class="help-block" ng-show="form2.tel.$valid && form2.tel.$touched">Valid :)</span>
</div>
</form>
</div>
<div class="col-md-6">
<p><strong>Model value</strong></p>
<blockquote>{{tel2}}<span ng-if="!tel2">N/A</span></blockquote>
<blockquote id="selectedCountry">{{selected.country}}</blockquote>
</div>
</div>
</div>
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/angular/angular.js"></script>
<script src="node_modules/intl-tel-input/build/js/utils.js"></script>
<script src="node_modules/intl-tel-input/build/js/intlTelInput.js"></script>
<script src="ng-intl-tel-input.module.js"></script>
<script src="ng-intl-tel-input.provider.js"></script>
<script src="ng-intl-tel-input.directive.js"></script>
<script>
var ngIntlTelInputApp = angular.module('ngIntlTelInputApp', ['ngIntlTelInput'])
.config(function (ngIntlTelInputProvider) {
ngIntlTelInputProvider.set({
initialCountry: 'us',
utilsScript: 'node_modules/intl-tel-input/build/js/utils.js'
});
});
angular.module('ngIntlTelInputApp', ['ngIntlTelInput']).controller('ngIntlTelInputAppController', function($scope) {
$scope.selected = {country: ''};
});
</script>
</body>
</html>