-
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
68d3732
commit d9c9353
Showing
6 changed files
with
36 additions
and
51 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,2 +1,3 @@ | ||
node_modules | ||
public/app_client/vendors | ||
public/npm-debug.log |
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 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 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 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,50 +1,32 @@ | ||
<!DOCTYPE html> | ||
<html ng-app="twitterMean"> | ||
<html> | ||
<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"/> | ||
<link rel="stylesheet" src="/vendors/bootstrap/dist/css/bootstrap.min.css"> | ||
<link rel="stylesheet" src="/vendors/font-awesome/css/font-awesome.css"> | ||
<link rel="stylesheet" src="/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> | ||
<script src="/vendors/jquery/dist/jquery.js"></script> | ||
<script src="/vendors/angular/angular.min.js"></script> | ||
<script src="/vendors/angular-ui-router/release/angular-ui-router.min.js"></script> | ||
<script src="/vendors/bootstrap/dist/js/bootstrap.js"></script> | ||
<script src="/vendors/foundation/js/foundation.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]--> | ||
<script src="/app_client/app.js"></script> | ||
<script src="/app_client/controllers/MainCtrl.js"></script> | ||
<script src="/app_client/controllers/LoginCtrl.js"></script> | ||
<script src="/app_client/controllers/RegisterCtrl.js"></script> | ||
<script src="/app_client/services/AuthService.js"></script> | ||
</head> | ||
|
||
<body> | ||
<h1>BONJOUR</h1> | ||
|
||
<ui-view></ui-view> | ||
|
||
|
||
<body ng-app="twitterMean"> | ||
<H1>YOW</H1> | ||
</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