summaryrefslogtreecommitdiff
path: root/www/templates/wizard.html
blob: 0ee3f3196cdbae9a7331d9c9f2d08694f4eb72fe (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
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
113
114
115
<ion-view view-title="{{'kWizard' | translate}}" ng-cloak cache-view="false" >

    <ion-nav-buttons side="left">
        <button class="button button-icon button-clear ion-navicon" ng-click="openMenu()"></button>
    </ion-nav-buttons>


    <ion-content class="padding" overflow-scroll="true">
  
    <wizard on-finish="finishedWizard()"> 
        
        <!-- portal url -->
        <wz-step wz-title="1" canexit="exitPortal">
            
            <h4><i id="transition-delay" class="animated swing ion-wand" style="font-size:2em"></i> {{'kWelcomeWizard' | translate}}</h4>
            <img src="img/wizard.svg" width="100px" style="float:left"/>
            <p>{{'kWizConfigPain' | translate}}</p>

            <h4>{{'kWizPortalUrl' | translate}}</h4>
            <label class="item item-input">
                <input autocorrect="off" autocapitalize="none" autocomplete="off" type="text" placeholder="e.g. http://server/zm" ng-model="wizard.portalurl">
            </label>

            <a class="button icon-left ion-information-circled button-clear button-dark" ng-click="toggleTip()">{{wizard.tiptext}}</a>


            <div class="wizardtip" ng-show="wizard.tipshow">
                <b>{{'kWizTip' | translate}}: </b>{{'kWizPortalTip' | translate}}<br/>

                <img src="img/portalurl.png" width="30%">
            </div>

            <br/>
            <button class="button button-small icon icon-right ion-chevron-right" wz-next>{{'kNext' | translate}}</button>
            

        </wz-step>
            
   
        <!-- auth mode -->  
        <wz-step wz-title="2"  >
            <h4>{{'kWizPortalAuth' | translate}}</h4>
            <!--<img src="img/wizard.svg" width="100px" style="float:left"/>-->
            <p>{{'kWizPortalText' | translate}}</p>
            <ion-toggle ng-change="toggleAuth()" ng-model="wizard.useauth" ng-checked="wizard.useauth" toggle-class="toggle-calm">{{'kWizUseAuth' | translate}}</ion-toggle>

            <ion-toggle ng-show="wizard.useauth" ng-model="wizard.usezmauth" ng-checked="wizard.usezmauth" toggle-class="toggle-calm">{{'kWizZMAuth' | translate}}</ion-toggle>
            
            <div ng-if="wizard.usezmauth">
                <label class="item item-input item-floating-label" >
                    <span class="input-label">{{'kUserName' | translate}}</span>
                    <input autocorrect="off" autocapitalize="none" autocomplete="off" type="text" ng-model="wizard.zmuser" placeholder="{{'kPlaceHolderZMAuthUser'|translate}}" >
                </label>
                <label class="item item-text-wrap item-input item-floating-label" >
                    <span class="input-label">{{'kPassword' | translate}}</span>
                    <input type="password" ng-model="wizard.zmpassword" placeholder="{{'kPlaceHolderZMAuthPass'|translate}}" >
                    <!--<p >{{'kWizPasswdNote' | translate}}</p>-->
                </label>
            </div>

            <ion-toggle ng-show="wizard.useauth" ng-model="wizard.usebasicauth" ng-checked="wizard.usebasicauth" toggle-class="toggle-calm">{{'kWizBasicAuth' | translate}}</ion-toggle>
            <label class="item item-input item-floating-label" ng-show="wizard.usebasicauth">
                <span class="input-label">{{'kUserName' | translate}}</span>
                <input autocorrect="off" autocapitalize="none" autocomplete="off" type="text" ng-model="wizard.basicuser" placeholder="{{'kPlaceHolderBasicAuthUser'|translate}}" >
            </label>
            <label class="item item-input item-text-wrap item-floating-label" ng-show="wizard.usebasicauth">
                <span class="input-label">{{'kPassword' | translate}}</span>
                <input type="password" ng-model="wizard.basicpassword" placeholder="{{'kPlaceHolderBasicAuthPass'|translate}}" >
                <p>{{'kWizPasswdNote' | translate}}</p>
            </label>


            <a class="button icon-left ion-information-circled button-clear button-dark" ng-click="toggleTip()">{{wizard.tiptext}}</a>


            <div class="wizardtip" ng-show="wizard.tipshow">
                <b>{{'kWizTip'| translate}} </b> {{'kWizAuthText1' | translate}}<br/>
                {{'kWizAuthText2' | translate}}
            </div>

           <br/>
            <button class="button button-small icon icon-left ion-chevron-left" wz-previous>{{'kPrev' | translate}}</button>
            <button class="button button-small icon icon-right ion-chevron-right" ng-click="exitAuth()">{{'kNext' | translate}}</button>
            
    </wz-step>
            
        
    <wz-step wz-title="3"  >
        <br/><br/>
        <h4>{{'kWizResults' | translate}}</h4>
    
        <span ng-if="wizard.portalValidText" style="color:{{wizard.portalColor}};"><i ng-class="wizard.portalColor=='#16a085' ? 'ion-checkmark-circled':'ion-close-circled'"></i>&nbsp;{{wizard.portalValidText}}<br/></span>
        
        <span ng-if="wizard.apiValidText" style="color:{{wizard.apiColor}};"><i ng-class=" wizard.apiColor=='#16a085' ? 'ion-checkmark-circled':'ion-close-circled'"></i>&nbsp;{{wizard.apiValidText}}<br/></span>
        
        <span ng-if="wizard.streamingValidText" style="color:{{wizard.streamingColor}};"><i ng-class="wizard.streamingColor=='#16a085' ? 'ion-checkmark-circled':'ion-close-circled'"></i>&nbsp;{{wizard.streamingValidText}}<br/></span>
        
        <br/>
        <div class="wizardtip">
            {{'kWizNextStep1' | translate}}:
            <ul class="wiz-list">
                <li>{{'kWizNextStep2' | translate}}</li>
                <li>{{'kWizNextStep3' | translate}}</li>
            </ul>
        </div>
        <br/><br/>
        <button class="button button-small icon icon-left ion-chevron-left" wz-previous>{{'kPrev' | translate}}</button>
        <button class="button button-small icon icon-right ion-chevron-right" ng-click="gotoLoginState()">{{'kWizGotoLogin' | translate}}</button>
    </wz-step>
        
        
</wizard>
    </ion-content>

</ion-view>