mobileoa-common-modules
Version:
移动办公平台前端公共功能模块
21 lines • 938 B
HTML
<div class="modal">
<header class="bar bar-header bar-dark">
<button class="button button-clear button-{{buttonTheme}}" sino-modal-back-button="closeLoginModal()">取消</button>
<h1 class="title">填写账号</h1>
</header>
<ion-content class="login-modal has-header">
<div class="list">
<label class="item item-input sign-label-style">
<span class=" sign-label-style ion-ios-person-outline"></span>
<input type="text" placeholder="用户名" ng-model="newUser.userName">
</label>
<label class="item item-input sign-label-style">
<span class="sign-label-style ion-ios-locked-outline"></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>
</ion-content>
</div>