-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c6635a0
commit 68d3732
Showing
15 changed files
with
201 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"directory": "public/vendors/" | ||
"directory": "public/app_client/vendors/" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
node_modules | ||
public/vendors | ||
public/app_client/vendors |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
{ | ||
"name": "startpitch", | ||
"version": "0.0.0", | ||
"dependencies": { | ||
"angular": "^1.5.8", | ||
"angular-route": "^1.5.8", | ||
"angular-local-storage": "^0.5.0", | ||
"angular-jwt": "^0.1.3", | ||
"angular-socket-io": "^0.7.0", | ||
"bootstrap": "^3.3.7", | ||
"materialize": "^0.97.7", | ||
"socket.io-client": "^1.4.8", | ||
"moment": "^2.15.1", | ||
"font-awesome": "latest", | ||
"animate.css": "latest" | ||
} | ||
"name": "twittermean", | ||
"version": "0.0.0", | ||
"dependencies": { | ||
"angular": "^1.5.8", | ||
"angular-local-storage": "^0.5.0", | ||
"angular-jwt": "^0.1.3", | ||
"angular-socket-io": "^0.7.0", | ||
"bootstrap": "^3.3.7", | ||
"materialize": "^0.97.7", | ||
"socket.io-client": "^1.4.8", | ||
"moment": "^2.15.1", | ||
"font-awesome": "latest", | ||
"animate.css": "latest", | ||
"angular-ui-router": "^0.3.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
var app = angular.module('twitterMean', ['ngRoute']); | ||
var app = angular.module('twitterMean', ['ui.router']); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
app.controller('mainController', function($scope) { | ||
// create a message to display in our view | ||
$scope.message = 'Everyone come and see how good I look!'; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
app.controller('registerController', function($scope) { | ||
// create a message to display in our view | ||
$scope.message = 'Everyone come and see how good I look!'; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!DOCTYPE html> | ||
<html ng-app="twitterMean"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<title>Register momo</title> | ||
|
||
<script> | ||
var loc = window.location.pathname; | ||
var dir = loc.substring(0,loc.lastIndexOf('/')); | ||
console.log(loc); | ||
</script> | ||
|
||
<!-- CSS --> | ||
<link rel="stylesheet" href="./vendors/bootstrap/dist/css/bootstrap.min.css" /> | ||
<link rel="stylesheet" href="./vendors/font-awesome/css/font-awesome.css"/> | ||
<link rel="stylesheet" href="./vendors/font-awesome/css/font-awesome.css"/> | ||
<link rel="stylesheet" href="./vendors/foundation/css/foundation.css"/> | ||
|
||
|
||
<!-- JS --> | ||
<script src="./vendors/angular.min.js"></script> | ||
<script src="./vendors/angular-ui-router/release/angular-ui-router.min.js"></script> | ||
|
||
<!-- ANGULAR CUSTOM --> | ||
<script src="./app.js"></script> | ||
<script src="./controllers/MainCtrl.js"></script> | ||
<script src="./controllers/LoginCtrl.js"></script> | ||
<script src="./controllers/RegisterCtrl.js"></script> | ||
<script src="./services/AuthService.js"></script> | ||
<script src="./vendors/bootstrap/dist/js/bootstrap.js"></script> | ||
<script src="./vendors/foundation/js/foundation.js"></script> | ||
|
||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> | ||
<!-- Leave those next 4 lines if you care about users using IE8 --> | ||
<!--[if lt IE 9]> | ||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | ||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | ||
<![endif]--> | ||
</head> | ||
|
||
<body> | ||
<h1>BONJOUR</h1> | ||
|
||
<ui-view></ui-view> | ||
|
||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
app.config(function($stateProvider, $urlRouterProvider) { | ||
|
||
$stateProvider | ||
// REGISTER VIEW ======================================== | ||
.state('register', { | ||
url: '/register', | ||
templateUrl: '/views/register.html', | ||
controller: 'registerController' | ||
|
||
}) | ||
|
||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<form> | ||
<div class="row"> | ||
<div class="large-12 columns"> | ||
<label>Input Label | ||
<input type="text" placeholder="large-12.columns" /> | ||
</label> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="large-4 columns"> | ||
<label>Input Label | ||
<input type="text" placeholder="large-4.columns" /> | ||
</label> | ||
</div> | ||
<div class="large-4 columns"> | ||
<label>Input Label | ||
<input type="text" placeholder="large-4.columns" /> | ||
</label> | ||
</div> | ||
<div class="large-4 columns"> | ||
<div class="row collapse"> | ||
<label>Input Label</label> | ||
<div class="small-9 columns"> | ||
<input type="text" placeholder="small-9.columns" /> | ||
</div> | ||
<div class="small-3 columns"> | ||
<span class="postfix">.com</span> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="large-12 columns"> | ||
<label>Select Box | ||
<select> | ||
<option value="husker">Husker</option> | ||
<option value="starbuck">Starbuck</option> | ||
<option value="hotdog">Hot Dog</option> | ||
<option value="apollo">Apollo</option> | ||
</select> | ||
</label> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="large-6 columns"> | ||
<label>Choose Your Favorite</label> | ||
<input type="radio" name="pokemon" value="Red" id="pokemonRed"><label for="pokemonRed">Red</label> | ||
<input type="radio" name="pokemon" value="Blue" id="pokemonBlue"><label for="pokemonBlue">Blue</label> | ||
</div> | ||
<div class="large-6 columns"> | ||
<label>Check these out</label> | ||
<input id="checkbox1" type="checkbox"><label for="checkbox1">Checkbox 1</label> | ||
<input id="checkbox2" type="checkbox"><label for="checkbox2">Checkbox 2</label> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="large-12 columns"> | ||
<label>Textarea Label | ||
<textarea placeholder="small-12.columns"></textarea> | ||
</label> | ||
</div> | ||
</div> | ||
</form> |