This repository was archived by the owner on Aug 30, 2019. It is now read-only.
Description Currently, merely including this project (i.e. without enabling the platform override) causes iOS styling to break completely.
Code for the above is below, everything is a standard Ionic Tabs starter project with ionic-mdl included.
<ion-view view-title="Login">
<ion-content class="padding">
<form name="authorizationForm" novalidate="" ng-submit="signIn()">
<div class="list">
<label class="item item-input">
<span class="input-label">Username</span>
<input type="text" name="username" ng-model="authorization.username" required>
</label>
<div class="error-container" ng-show="authorizationForm.username.$error"
ng-messages="authorizationForm.username.$error">
<div class="error" ng-message="required">
<i class="ion-information-circled"></i>
This field is required!
</div>
</div>
<label class="item item-input">
<span class="input-label">Password</span>
<input type="password" name="password" ng-model="authorization.password" required>
</label>
<div class="error-container last-error-container"
ng-show="authorizationForm.password.$error && authorizationForm.$submitted"
ng-messages="authorizationForm.password.$error">
<div ng-messages-include="error-list.html"></div>
</div>
</div>
<button class="button button-full button-positive" type="submit">
Sign In
</button>
</form>
</ion-content>
</ion-view>
Reactions are currently unavailable
Currently, merely including this project (i.e. without enabling the platform override) causes iOS styling to break completely.
Code for the above is below, everything is a standard Ionic Tabs starter project with ionic-mdl included.