aboutsummaryrefslogtreecommitdiff
blob: 27357cad9405fa4eae1b98be3fc4302201b12117 (plain)
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
    <fieldset class="border-top">
        <div class="form-group">
            <label class="col-md-2 control-label" for="username">{{:: 'username' | translate}}</label>
            <div class="col-md-6">
                <input ng-model="claims.username" name="username" id="username" onoffswitch on-text="{{:: 'onText' | translate}}" off-text="{{:: 'offText' | translate}}"/>
            </div>
        </div>
        <div class="form-group">
            <label class="col-md-2 control-label" for="claimName">{{:: 'name' | translate}}</label>
            <div class="col-md-6">
                <input ng-model="claims.name" name="claimName" id="claimName" onoffswitch on-text="{{:: 'onText' | translate}}" off-text="{{:: 'offText' | translate}}"/>
            </div>
        </div>
        <div class="form-group">
            <label class="col-md-2 control-label" for="email">{{:: 'email' | translate}}</label>
            <div class="col-md-6">
                <input ng-model="claims.email" name="email" id="email" onoffswitch on-text="{{:: 'onText' | translate}}" off-text="{{:: 'offText' | translate}}"/>
            </div>
        </div>
        <div class="form-group">
            <label class="col-md-2 control-label" for="gender">{{:: 'gender' | translate}}</label>
            <div class="col-md-6">
                <input ng-model="claims.gender" name="gender" id="gender" onoffswitch on-text="{{:: 'onText' | translate}}" off-text="{{:: 'offText' | translate}}"/>
            </div>
        </div>
        <div class="form-group">
            <label class="col-md-2 control-label" for="address">{{:: 'address' | translate}}</label>
            <div class="col-md-6">
                <input ng-model="claims.address" name="address" id="address" onoffswitch on-text="{{:: 'onText' | translate}}" off-text="{{:: 'offText' | translate}}"/>
            </div>
        </div>
        <div class="form-group">
            <label class="col-md-2 control-label" for="locale">{{:: 'locale' | translate}}</label>
            <div class="col-md-6">
                <input ng-model="claims.locale" name="locale" id="locale" onoffswitch on-text="{{:: 'onText' | translate}}" off-text="{{:: 'offText' | translate}}"/>
            </div>
        </div>
        <div class="form-group">
            <label class="col-md-2 control-label" for="phone">{{:: 'phone' | translate}}</label>
            <div class="col-md-6">
                <input ng-model="claims.phone" name="phone" id="phone" onoffswitch on-text="{{:: 'onText' | translate}}" off-text="{{:: 'offText' | translate}}"/>
            </div>
        </div>
        <div class="form-group">
            <label class="col-md-2 control-label" for="profile">{{:: 'profile-url' | translate}}</label>
            <div class="col-md-6">
                <input ng-model="claims.profile" name="profile" id="profile" onoffswitch on-text="{{:: 'onText' | translate}}" off-text="{{:: 'offText' | translate}}"/>
            </div>
        </div>
        <div class="form-group">
            <label class="col-md-2 control-label" for="picture">{{:: 'picture-url' | translate}}</label>
            <div class="col-md-6">
                <input ng-model="claims.picture" name="picture" id="picture" onoffswitch on-text="{{:: 'onText' | translate}}" off-text="{{:: 'offText' | translate}}"/>
            </div>
        </div>
        <div class="form-group">
            <label class="col-md-2 control-label" for="website">{{:: 'website' | translate}}</label>
            <div class="col-md-6">
                <input ng-model="claims.website" name="website" id="website" onoffswitch on-text="{{:: 'onText' | translate}}" off-text="{{:: 'offText' | translate}}"/>
            </div>
        </div>
    </fieldset>