Add new client (Recovery)
Add new client (Recovery)
by Ammi Reddy Kovvuri
HTML
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<div class="row" ng-controller="mainCtrl">
<div class="col-md-3 col-md-offset-1">
<div class="form-group">
<label for="language">Language</label>
<input type="text" class="form-control" name="language">
<div class="language-list">
<ul class="list-group">
<li class="list-group-item" ng-repeat="item in ">Cras justo odio</li>
</ul>
</div>
</div>
<div class="form-group">
<label for="dateFormat">Date Format</label>
<input type="text" class="form-control" name="dateFormat">
</div>
<div class="form-group">
<label for="numberFormat">Number Format</label>
<input type="text" class="form-control" name="numberFormat">
</div>
</div>
<div class="col-md-3 col-md-offset-1">
<div class="form-group">
<label for="auditCurrency">Audit Currency</label> <span class="asterisk">*</span>
<input type="text" class="form-control" name="auditCurrency">
</div>
<div class="form-group">
<label for="timeFormat">Time Format</label>
<input type="text" class="form-control" name="timeFormat">
</div>
</div>
<div class="col-md-3 col-md-offset-1">
<div class="form-group">
<label for="auditCurrencyLD">Audit Currency Lookup Date</label> <span class="asterisk">*</span>
<input type="text" class="form-control" name="auditCurrencyLD">
</div>
<div class="form-group">
<label for="timeZone">Time Zone</label>
<input type="text" class="form-control" name="timeZone">
</div>
</div>
</div>
JavaScript
(function() {
var app = angular.module('myApp', []);
app.controller('mainCtrl', function($scope) {
$scope.languages = [{
id: 1,
name: 'English UK',
label: 'English(UK)'
},
{
id: 2,
name: 'English US',
label: 'English(US)'
},
{
id: 3,
name: 'Telugu',
label: 'Telugu Language'
}
]
});
})()