UNPKG

mobileoa-common-modules

Version:

移动办公平台前端公共功能模块

23 lines (22 loc) 825 B
<ion-view cache-view="false"> <ion-nav-title> <h1 class="title">填写账号</h1> </ion-nav-title> <ion-content class="login-modal"> <div class="modal"> <div class="list"> <label class="item item-input sign-label-style"> <span class=" sign-label-style ion-person"></span> <input type="text" placeholder="用户名" ng-model="newUser.userName"> </label> <label class="item item-input sign-label-style"> <span class="sign-label-style ion-locked"></span> <input type="password" ng-model="newUser.password" placeholder="密码"> </label> </div> <div class="padding"> <button class="button button-block button-positive sign-footer" ng-disabled="!newUser.userName || !newUser.password" ng-click="loginInModal()">登录</button> </div> </div> </ion-content> </ion-view>