mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-27 22:35:22 +00:00
Restructure Sass files and folders for proper application Sass development
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
<div ng-app="inputBasicDemo" ng-controller="DemoCtrl" layout="column">
|
||||
|
||||
<md-content md-theme="docs-dark" class="md-padding" layout="row" layout-sm="column">
|
||||
<md-input-container>
|
||||
<label>Title</label>
|
||||
<input ng-model="user.title">
|
||||
</md-input-container>
|
||||
<md-input-container>
|
||||
<label>Email</label>
|
||||
<input ng-model="user.email" type="email">
|
||||
</md-input-container>
|
||||
</md-content>
|
||||
|
||||
<md-content class="md-padding">
|
||||
|
||||
<md-input-container flex>
|
||||
<label>Company (Disabled)</label>
|
||||
<input ng-model="user.company" disabled>
|
||||
</md-input-container>
|
||||
|
||||
<div layout layout-sm="column">
|
||||
<md-input-container flex>
|
||||
<label>First Name</label>
|
||||
<input ng-model="user.firstName">
|
||||
</md-input-container>
|
||||
<md-input-container flex>
|
||||
<label>Last Name</label>
|
||||
<input ng-model="user.lastName">
|
||||
</md-input-container>
|
||||
</div>
|
||||
|
||||
<md-input-container flex>
|
||||
<label>Address</label>
|
||||
<input ng-model="user.address">
|
||||
</md-input-container>
|
||||
|
||||
<div layout layout-sm="column">
|
||||
<md-input-container flex>
|
||||
<label>City</label>
|
||||
<input ng-model="user.city">
|
||||
</md-input-container>
|
||||
<md-input-container flex>
|
||||
<label>State</label>
|
||||
<input ng-model="user.state">
|
||||
</md-input-container>
|
||||
<md-input-container flex>
|
||||
<label>Postal Code</label>
|
||||
<input ng-model="user.postalCode">
|
||||
</md-input-container>
|
||||
</div>
|
||||
|
||||
<md-input-container flex>
|
||||
<label>Biography</label>
|
||||
<textarea ng-model="user.biography" columns="1"></textarea>
|
||||
</md-input-container>
|
||||
|
||||
</md-content>
|
||||
</div>
|
||||
@@ -0,0 +1,16 @@
|
||||
angular.module('inputBasicDemo', ['ngMaterial'])
|
||||
|
||||
.controller('DemoCtrl', function($scope) {
|
||||
$scope.user = {
|
||||
title: 'Developer',
|
||||
email: 'ipsum@lorem.com',
|
||||
firstName: '',
|
||||
lastName: '' ,
|
||||
company: 'Google' ,
|
||||
address: '1600 Amphitheatre Pkwy' ,
|
||||
city: 'Mountain View' ,
|
||||
state: 'CA' ,
|
||||
biography: 'Loves kittens, snowboarding, and can type at 130 WPM. And rumor has it she bouldered up Castle Craig!',
|
||||
postalCode : '94043'
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user