diff --git a/src/assets/scripts/ads-add/ads-add.html b/src/assets/scripts/ads-add/ads-add.html index 68427d8..c2cd559 100644 --- a/src/assets/scripts/ads-add/ads-add.html +++ b/src/assets/scripts/ads-add/ads-add.html @@ -1,87 +1,96 @@ -
-
+ +
+ -
-

Create a new Internship Ad

-
+
+
+ +
+

Create a new Internship Ad

+
-
-
+
+ +
- + -
-
-
-
-
- company -
-
- -
{{user.company.name}}
-
-
-
-
-
-
About the business:
- -
About the role:
- -
-
+ +
+
+
+
+ company +
+
+ +
{{user.company.name}}
+
+
+
+
+
+
About the business:
+ +
About the role:
+
- - -
-
-
-
Location:
- - -
-
- - -
-
- - -
-
- - -
-
-
Application close:
- +
+
-
Main Classification:
- + +
+
+
+
Location:
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
Application close:
+ -
Skills:
- -
-
{{classification}}
-
{{skill}}
-
-
-
-
- - -
- - +
Main Classification:
+ + +
Skills:
+ +
+
{{classification}}
+
{{skill}}
+
- +
+
+ + +
+ +
- - -
- -
\ No newline at end of file + +
+
+ +
+ + diff --git a/src/assets/scripts/ads-details/ads-details.html b/src/assets/scripts/ads-details/ads-details.html index 8b39012..0d20b8e 100644 --- a/src/assets/scripts/ads-details/ads-details.html +++ b/src/assets/scripts/ads-details/ads-details.html @@ -1,65 +1,71 @@ -
-
+ +
+ +
+
-
-
-

Ad's Details

+
+
+

Ad's Details

+
-
-
- -
+
+ +
- -
-
-
-
- company -
-
-

{{ ad.title }}

-
{{ ad.companyname }}
+ +
+
+
+
+ company +
+
+

{{ ad.title }}

+
{{ ad.companyname }}
+
-
-
-
- {{ ad.description }} +
+
+ {{ ad.description }} +
-
- -
-
-
-
Location:
-

{{ad.location}}

-
Application close:
-

{{ad.expiration-date}}

+ +
+
+
+
Location:
+

{{ad.location}}

+
Application close:
+

{{ad.expiration-date}}

-
Skills:
-
- {{ skill }} +
Skills:
+
+ {{ skill }} +
+

{{ daysAgo(ad.timestamp) }}

-

{{ daysAgo(ad.timestamp) }}

-
- -
- - + +
+ + +
-
-
- +
+ -
\ No newline at end of file +
+ + diff --git a/src/assets/scripts/ads/ads.html b/src/assets/scripts/ads/ads.html index 93b746b..2ca6c72 100644 --- a/src/assets/scripts/ads/ads.html +++ b/src/assets/scripts/ads/ads.html @@ -1,44 +1,54 @@ -
+ +
+ + +
-

All Published Ads

+

All Published Ads

-

Your Ads

-
-
+

Your Ads

+
+
+
-
+
+
-
- Card image cap -
-
-

{{ ad.title }}

-
- - - -
-
-

{{ ad.description }}

-
TBD
-

{{ ad.companyintro }}

+
+ Card image cap +
+
+

{{ ad.title }}

+ - -
- VIEW MORE -
-
+

{{ ad.description }}

+
TBD
+

{{ ad.companyintro }}

+
+ +
+ VIEW MORE +
+
+
- -
-
-
\ No newline at end of file + +
+ + + +
+ + diff --git a/src/assets/scripts/app/index.js b/src/assets/scripts/app/index.js index bc25fd6..edce2ff 100644 --- a/src/assets/scripts/app/index.js +++ b/src/assets/scripts/app/index.js @@ -4,7 +4,7 @@ import UserService from './shared.service'; angular.module('NomitWisp', [ - 'NomitWisp-Login', + 'nwLogin', 'NomitWisp-Topbar', 'NomitWisp-Sidebar', 'NomitWisp-Footer', @@ -33,6 +33,10 @@ angular.module('NomitWisp', controller: 'DashboardController', templateUrl: 'assets/scripts/dashboard/dashboard.html' }) + .when('/login', { + controller: 'LoginController', + templateUrl: 'assets/scripts/login/login.html' + }) .when('/ads', { controller: 'AdsController', templateUrl: 'assets/scripts/ads/ads.html' diff --git a/src/assets/scripts/app/shared.service.js b/src/assets/scripts/app/shared.service.js index 88768eb..e5f40ec 100644 --- a/src/assets/scripts/app/shared.service.js +++ b/src/assets/scripts/app/shared.service.js @@ -12,13 +12,13 @@ const UserService = ($cookies, $rootScope, $location) => { //load user has been called (is called on page load in menu controller and after login on modal controller) serv.loadUser = () => { - if(typeof $cookies.get('access_token') !== 'undefined' || $location.path() === '/signup'){ + if(typeof $cookies.get('access_token') !== 'undefined') + { $rootScope.$broadcast('loadUserSuccess', parseJwt( $cookies.get('access_token') )); - $('#modalLoginForm').modal('hide'); } else { - $('#modalLoginForm').modal({ backdrop: 'static', keyboard: false }); + $location.path('/login'); } } diff --git a/src/assets/scripts/companies/companies.html b/src/assets/scripts/companies/companies.html index c17bb06..a30542a 100644 --- a/src/assets/scripts/companies/companies.html +++ b/src/assets/scripts/companies/companies.html @@ -1,49 +1,48 @@ -
-
-
-

Companies

-
- -
- -
- -
- -
-
- -
-
{{company.name}}
-
Victoria
-
{{companies.email}}
+ +
+ +
+
+
+

Companies

+
- view company profile - ban - company +
+ +
+ +
+ +
+
+ +
+
{{company.name}}
+
Victoria
+
{{companies.email}}
+ + view company profile + ban + company +
-
-
-
-
-
- - - - - +
+
+
+
+ + + + + +
- -
- - - -
- - -
+ +
+ + diff --git a/src/assets/scripts/company-details/company-details.html b/src/assets/scripts/company-details/company-details.html index 1a23b5c..0890c6b 100644 --- a/src/assets/scripts/company-details/company-details.html +++ b/src/assets/scripts/company-details/company-details.html @@ -1,106 +1,108 @@ -
-
-
-
-

Company's Profile

- + +
+ +
+
+
+
+

Company's Profile

+ +
+
+ +
+ +
+ + +
+
+
+ +
+
{{ company.company.name }}
{{ company.company.description }} +
-
- -
- -
- - -
-
-
- -
-
{{ company.company.name }}
{{ company.company.description }} +
+
+ +
+
+ Name + +
+
+ Business Type + +
+
+ ABN + +
+
+ +
+
+ Email Address + +
+
+ Phone Number + +
+
+ Website + +
+
+ + +
+
+ Address + +
+
+ City + +
+
+ State + +
+
+ Zip +
-
-
- -
-
- Name - -
-
- Business Type - -
-
- ABN - -
-
- -
-
- Email Address - -
-
- Phone Number - -
-
- Website - -
-
- - -
-
- Address - -
-
- City - -
-
- State - -
-
- Zip - -
-
-
-
- Twitter - -
-
- Facebook - -
-
- Instagram - -
-
- Linkedin - -
-
- +
+
+ Twitter + +
+
+ Facebook + +
+
+ Instagram + +
+
+ Linkedin +
-
-
- - -
- \ No newline at end of file +
+ +
+ +
+ + \ No newline at end of file diff --git a/src/assets/scripts/dashboard/dashboard.html b/src/assets/scripts/dashboard/dashboard.html index d8d6aae..a6c280e 100644 --- a/src/assets/scripts/dashboard/dashboard.html +++ b/src/assets/scripts/dashboard/dashboard.html @@ -1,181 +1,186 @@ -
-
-
-
-

Welcome {{ user.name }}

+ +
+ + +
+
+
+
+

Welcome {{ user.name }}

+
-
-
- -
- -
- +
+ +
+ +
+ -
+
-
- -
-
-
Total Applications
-
-
-
-
- -
-
- 24K +
+ +
+
+
Total Applications
+
+
+
+
+ +
+
+ 24K +
-
-
- -
-
-
Successful Matches
-
-
-
-
- -
-
- 127 +
+ +
+
+
Successful Matches
+
+
+
+
+ +
+
+ 127 +
-
-
- -
-
-
New Ads (last month)
-
-
-
-
- -
-
- 79 +
+ +
+
+
New Ads (last month)
+
+
+
+
+ +
+
+ 79 +
-
-
- -
-
-
-
New Registered Users
-
-
- -
-
-
-
- COMPANIES -
-
- USERS +
+ +
+
+
+
New Registered Users
+
+
+ +
+
+
+
+ COMPANIES +
+
+ USERS +
-
-
- -
-
- -
-
-
-
Successful Mathches %
-
- -
-
-
- +
+ +
+
+ +
+
+
+
Successful Mathches %
+
+ +
+
+
+ +
+
Matched
-
Matched
-
-
- -
-
-
-
-
-
Nationality
-
-
-
+
+ +
+
+
+
+
+
Nationality
+
+
+
+
-
-
-
-
- -
-
-
100k
- Visitors From USA - 50% -
-
50% - Complete
+
+
+
+ +
+
+
100k
+ Visitors From USA + 50% +
+
50% + Complete
+
-
-
-
1M
- Visitors From Europe - 80% -
-
80% - Complete
+
+
1M
+ Visitors From Europe + 80% +
+
80% + Complete
+
-
-
-
450k
- Visitors From Australia - 40% -
-
40% - Complete
+
+
450k
+ Visitors From Australia + 40% +
+
40% + Complete
+
-
-
-
1B
- Visitors From India - 90% -
-
90% - Complete
+
+
1B
+ Visitors From India + 90% +
+
90% + Complete
+
@@ -186,154 +191,155 @@
-
- -
-
- Your Ads + +
+
+ Your Ads +
-
-
- -
+
+ +
- -
-
- Card image cap -
-
-
Adv title
-
-
Adv title
-

Some quick example text to build on the card title and make up the bulk of the - card's content.

-
- - - -
-
- Card image cap -
-
-
Adv title
-
-
Adv title
-

Some quick example text to build on the card title and make up the bulk of the - card's content.

-
- - - -
- -
+ +
+ +
- -
-
- Card image cap -
-
-
Adv title
-
- + +
+
+ Card image cap +
+
+
Adv title
+
+ +
+
+
Adv title
+

Some quick example text to build on the card title and make up the bulk of the + card's content.

+
+ +
+ VIEW MORE
-
-
Adv title
-

Some quick example text to build on the card title and make up the bulk of the - card's content.

+
- -
- VIEW MORE -
-
-
- -
-
- Card image cap -
-
-
Adv title
-
- + +
+
+ Card image cap +
+
+
Adv title
+
+ +
+
+
Adv title
+

Some quick example text to build on the card title and make up the bulk of the + card's content.

+
+ +
+ VIEW MORE
-
-
Adv title
-

Some quick example text to build on the card title and make up the bulk of the - card's content.

+
- -
- VIEW MORE -
-
-
- -
-
- Card image cap -
-
-
Adv title
-
- + +
+
+ Card image cap +
+
+
Adv title
+
+ +
+
+
Adv title
+

Some quick example text to build on the card title and make up the bulk of the + card's content.

+
+ +
+ VIEW MORE
-
-
Adv title
-

Some quick example text to build on the card title and make up the bulk of the - card's content.

+
- -
- VIEW MORE -
-
-
-
+
+ + diff --git a/src/assets/scripts/history/history.html b/src/assets/scripts/history/history.html index 34c00a1..34497d3 100644 --- a/src/assets/scripts/history/history.html +++ b/src/assets/scripts/history/history.html @@ -1,72 +1,77 @@ -
-
-
-

- History -

+ +
+ +
+
+
+

+ History +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#PositionCompanyIndustrySubmission DateApplication Status
1Graphic Design InternSierra Delta CreativeDesign07 Jan 2019 +
+ ON +
+
2Barista InternBrunettiHospitality21 Jan 2019 +
+ OFF +
+
3Web Developer InternAgile TalentIT / Software Engineering23 Jan 2019 +
+ CLOSED +
+
4Kitchen Hand InternYarra River GrillHospitality25 Jan 2019 +
+ CANCELLED +
+
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#PositionCompanyIndustrySubmission DateApplication Status
1Graphic Design InternSierra Delta CreativeDesign07 Jan 2019 -
- ON -
-
2Barista InternBrunettiHospitality21 Jan 2019 -
- OFF -
-
3Web Developer InternAgile TalentIT / Software Engineering23 Jan 2019 -
- CLOSED -
-
4Kitchen Hand InternYarra River GrillHospitality25 Jan 2019 -
- CANCELLED -
-
-
-
\ No newline at end of file + + + diff --git a/src/assets/scripts/index.js b/src/assets/scripts/index.js index 52c3b97..b1fe691 100755 --- a/src/assets/scripts/index.js +++ b/src/assets/scripts/index.js @@ -16,7 +16,7 @@ import './googleMaps'; import './utils'; import './user-form'; import './logout'; -import './nwLogin'; +import './login'; import './nwFooter'; import './nwSidebar'; import './nwTopbar'; diff --git a/src/assets/scripts/login/index.js b/src/assets/scripts/login/index.js new file mode 100644 index 0000000..a2ffa47 --- /dev/null +++ b/src/assets/scripts/login/index.js @@ -0,0 +1,8 @@ +import * as angular from 'angular'; +import ngCookies from 'angular-cookies'; +import LoginController from './login.controller'; +import LoginService from './login.service'; + +angular.module('nwLogin', [ngCookies]) + .controller('LoginController', LoginController) + .factory('LoginService', LoginService); \ No newline at end of file diff --git a/src/assets/scripts/login/login.controller.js b/src/assets/scripts/login/login.controller.js new file mode 100644 index 0000000..4c86096 --- /dev/null +++ b/src/assets/scripts/login/login.controller.js @@ -0,0 +1,33 @@ +import * as $ from 'jquery'; + +/** @ngInject */ +const LoginController = ['$scope', '$cookies', '$location', 'LoginService', 'UserService' , + function($scope, $cookies, $location, LoginService, UserService) { + $('#modalLoginForm').modal({ backdrop: 'static', keyboard: false }); + // load the user if already logged in, for all controllers + UserService.loadUser(); + $scope.userLogin = (LoginForm) => { + $scope.submitted = true; + $scope.dataLoading = true; + + if (LoginForm.$invalid) { + return; + } + + LoginService.loginUserService($scope.user) + .then((result) => { + // save the cookie and reload the user for all controllers + $cookies.put('access_token', result.token); + UserService.loadUser(); + $location.path('/'); + $scope.$emit('needReload'); + $scope.dataLoading = false; + }) + .catch((err) => { + $scope.dataLoading = false; + alert(err); + }) + } +}]; + +export default LoginController; \ No newline at end of file diff --git a/src/assets/scripts/login/login.html b/src/assets/scripts/login/login.html new file mode 100644 index 0000000..b65733a --- /dev/null +++ b/src/assets/scripts/login/login.html @@ -0,0 +1,231 @@ +
+ + +
+ diff --git a/src/assets/scripts/nwLogin/login.service.js b/src/assets/scripts/login/login.service.js similarity index 100% rename from src/assets/scripts/nwLogin/login.service.js rename to src/assets/scripts/login/login.service.js diff --git a/src/assets/scripts/nwLogin/index.js b/src/assets/scripts/nwLogin/index.js deleted file mode 100644 index 68693df..0000000 --- a/src/assets/scripts/nwLogin/index.js +++ /dev/null @@ -1,17 +0,0 @@ -import * as angular from 'angular'; -import ngCookies from 'angular-cookies'; -import LoginController from './login.controller'; -import LoginService from './login.service'; - -angular.module('NomitWisp-Login', [ngCookies]) - .directive('nwLogin', nwLogin) - .controller('LoginController', LoginController) - .factory('LoginService', LoginService); - -/** @ngInject */ -function nwLogin(){ - return { - restrict: 'E', - templateUrl: 'assets/scripts/nwLogin/nwLogin.html', - }; -} \ No newline at end of file diff --git a/src/assets/scripts/nwLogin/login.controller.js b/src/assets/scripts/nwLogin/login.controller.js deleted file mode 100644 index a87d2f6..0000000 --- a/src/assets/scripts/nwLogin/login.controller.js +++ /dev/null @@ -1,28 +0,0 @@ -/** @ngInject */ -const LoginController = ['$scope', '$cookies', '$location', 'LoginService', 'UserService' , - function ($scope, $cookies, $location, LoginService, UserService) { - - // load the user if already logged in, for all controllers - UserService.loadUser(); - - $scope.userLogin = async (isValid) => { - $scope.dataLoading = true; - if(isValid){ - await LoginService.loginUserService($scope.user) - .then((result) => { - // save the cookie and reload the user for all controllers - $cookies.put('access_token', result.token); - UserService.loadUser(); - $location.path('/'); - $scope.$emit('needReload'); - $scope.dataLoading = false; - }) - .catch((err) => { - $scope.dataLoading = false; - alert(err); - }) - } - } -}]; - -export default LoginController; \ No newline at end of file diff --git a/src/assets/scripts/nwLogin/nwLogin.html b/src/assets/scripts/nwLogin/nwLogin.html deleted file mode 100644 index a4f5198..0000000 --- a/src/assets/scripts/nwLogin/nwLogin.html +++ /dev/null @@ -1,163 +0,0 @@ -
- - -
- \ No newline at end of file diff --git a/src/assets/scripts/profile/profile.html b/src/assets/scripts/profile/profile.html index 14a0a74..5b7b343 100644 --- a/src/assets/scripts/profile/profile.html +++ b/src/assets/scripts/profile/profile.html @@ -1,844 +1,831 @@ -
-
-
-
-

Profile

+ +
+ +
+
+
+
+

Profile

+
-
-
- Sign up with WISP now to get yourself connected. -
-
- Please, tell us more about your information so we could find the perfect oportunities for you. -
+
+ Sign up with WISP now to get yourself connected. +
+
+ Please, tell us more about your information so we could find the perfect oportunities for you. +
+ +
+ +
+ + +
+ +
+
+ +
+
{{ profile.name }}
+
+
+
+
+
+
+
Your Profile
+
+
+
+ First Name + Required! + +
+
+ Middle Name + +
+
+ Last Name + Required! + +
+
+ +
+
+ Email Address + Required! + Invalid + email! + +
+
+ Phone Number + Required! + +
+
+ State of residence in Australia + Required! + +
+
-
- -
+
+
+ Nationality + Required! + +
+
+ Visa Type + Required! + +
+
+ Language (Select one or more) + Required! + +
+
+
+
+ Education + Required! + +
+
- -
+
+
+
Main Classification
+ Required! + +
+
+
Skills
+ Required! + +
+
+
+
Graphic Design
+
Adobe Creaetive CC
+
Illustration
+
+
+
-
-
- -
-
{{ profile.name }}
+
+
+ Twitter + +
+
+ Facebook + +
+
+ Instagram + +
+
+ Linkedin + +
+
+ +
+
+ + +
+
+ + + Curriculum + + + +
+
+ +
-
-
-
-
-
Your Profile
-
+
+ +
+
+ +
+
+
Help NOMIT collecting more data: your information + won't be visible!!
+
- First Name - Required! - + Birthdate +
+
+
+ +
+ +
+
- Middle Name - + Gender +
- Last Name - Required! - + City of Birth +
- Email Address - Required! - Invalid email! - + Arriving in Australia +
+
+
+ +
+ +
+
- Phone Number - Required! - + Reason for leaving +
- State of residence in Australia - Required! - + Reason for staying in Australia +
+ + +
+
+
+
+ +
+
+
+ +
+
{{ profile.name }}
A global high-tech company and one of the key players in Aerospace, Defence + and + Security +
+
+
+
+
Your Profile
- Nationality - Required! - + Name +
- Visa Type - Required! - + Business Type +
- Language (Select one or more) - Required! - + ABN +
- Education - Required! - + Email Address +
-
- -
-
Main Classification
- Required! - + Phone Number +
-
Skills
- Required! - + Website +
-
-
-
Graphic Design
-
Adobe Creaetive CC
-
Illustration
-
+
+ +
+
+ Address + +
+
+ City + +
+
+ State + +
+
+ Zip +
+
+
+ Description + +
+
Twitter - +
Facebook - +
Instagram - +
Linkedin - -
-
- -
-
- - -
-
- - - Curriculum - - - -
- -
- - - -
-
-
-
- -
-
- -
-
-
Help NOMIT collecting more data: your information - won't be visible!!
- -
-
- Birthdate -
-
-
- -
- -
+
-
- Gender - -
-
- City of Birth - -
+ +
- -
-
- Arriving in Australia -
-
-
- -
- - -
-
-
-
- Reason for leaving - -
-
- Reason for staying in Australia - -
-
- - - - -
-
- -
-
-
- -
-
{{ profile.name }}
A global high-tech company and one of the key players in Aerospace, Defence - and - Security -
-
-
-
-
Your Profile
- -
-
- Name - -
-
- Business Type - -
-
- ABN - -
+ +
+
+
+ +
+
Nomit
The Italian Network of Melbourne
- -
-
- Email Address - -
-
- Phone Number - -
-
- Website - -
-
- - -
-
- Address - -
-
- City - -
-
- State - -
-
- Zip - -
-
- -
-
- Description - -
-
-
-
- Twitter - -
-
- Facebook - -
-
- Instagram - -
-
- Linkedin - -
-
- - - - -
-
-
-
- - -
-
-
- -
-
Nomit
The Italian Network of Melbourne
-
-
-
-
Your Profile
+
+
+
Your Profile
-
-
- Name - -
-
- Business Type - -
-
- ABN - -
-
- -
-
- Email Address - -
-
- Phone Number - -
-
- Website - +
+
+ Name + +
+
+ Business Type + +
+
+ ABN + +
-
- -
-
- Address - -
-
- City - -
-
- State - -
-
- Zip - +
+
+ Email Address + +
+
+ Phone Number + +
+
+ Website + +
-
-
-
- Description - +
+
+ Address + +
+
+ City + +
+
+ State + +
+
+ Zip + +
-
-
-
- Twitter - -
-
- Facebook - -
-
- Instagram - +
+
+ Description + +
-
- Linkedin - +
+
+ Twitter + +
+
+ Facebook + +
+
+ Instagram + +
+
+ Linkedin + +
+ +
- - -
-
- - -
-
-
- -
-
Jobwatch
EMPLOYMENT RIGHTS LEGAL CENTRE -
-
-
-
-
Your Profile
-
-
- Name - -
-
- Business Type - -
-
- ABN - -
+ +
+
+
+ +
+
Jobwatch
EMPLOYMENT RIGHTS LEGAL CENTRE
+
+
+
+
Your Profile
- -
-
- Email Address - -
-
- Phone Number - -
-
- Website - +
+
+ Name + +
+
+ Business Type + +
+
+ ABN + +
-
- -
-
- Address - -
-
- City - -
-
- State - -
-
- Zip - +
+
+ Email Address + +
+
+ Phone Number + +
+
+ Website + +
-
-
-
- Description - +
+
+ Address + +
+
+ City + +
+
+ State + +
+
+ Zip + +
-
-
-
- Twitter - -
-
- Facebook - -
-
- Instagram - +
+
+ Description + +
-
- Linkedin - +
+
+ Twitter + +
+
+ Facebook + +
+
+ Instagram + +
+
+ Linkedin + +
+ +
- - - -
-
- -
- -
- -
-
-
Change Password
-
-
- Current Password - -
-
- New Password - -
-
- Confirm New Password - - + +
+
+
+
+
Change Password
+
+
+ Current Password + +
+
+ New Password + +
+
+ Confirm New Password + +
+ +
- - - -
- - +
- -
- - -
\ No newline at end of file + +
+ + diff --git a/src/assets/scripts/referees/referees.html b/src/assets/scripts/referees/referees.html index 2e9a529..4834907 100644 --- a/src/assets/scripts/referees/referees.html +++ b/src/assets/scripts/referees/referees.html @@ -1,47 +1,49 @@ -
-
-
-

Referees

-
+ +
+ + +
+
+
+

Referees

+
-
- -
+
+ +
-
- -
-
- -
-
{{referee.name}}
-
Victoria
-
{{referee.email}}
- {{referee.bio}} - ban - referee +
+ +
+
+ +
+
{{referee.name}}
+
Victoria
+
{{referee.email}}
+ {{referee.bio}} + ban + referee +
-
-
-
-
-
- - - - - +
+
+
+
+ + + + + +
-
- - -
- - -
+ +
+ + diff --git a/src/assets/scripts/reports/reports.html b/src/assets/scripts/reports/reports.html index 1f14cfd..4ed0458 100644 --- a/src/assets/scripts/reports/reports.html +++ b/src/assets/scripts/reports/reports.html @@ -1,349 +1,353 @@ -
-
-
-

- Reports -

-
- -
All Applications (Last month)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#PositionCompanyIndustrySubmitted By (ID)Submission DateApplication Status
1Graphic Design InternSierra Delta CreativeDesigndavidchan07 Jan 2019 -
- ON -
-
2Barista InternBrunettiHospitalityjenniferbrown21 Jan 2019 -
- OFF -
-
3Web Developer InternAgile TalentIT / Software Engineeringchristhomson23 Jan 2019 -
- CLOSED -
-
4Kitchen Hand InternYarra River GrillHospitalityjohndoe25 Jan 2019 -
- CANCELLED -
-
+ +
+ +
+
+
+

+ Reports +

+
+ +
All Applications (Last month)
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#PositionCompanyIndustrySubmitted By (ID)Submission DateApplication Status
1Graphic Design InternSierra Delta CreativeDesigndavidchan07 Jan 2019 +
+ ON +
+
2Barista InternBrunettiHospitalityjenniferbrown21 Jan 2019 +
+ OFF +
+
3Web Developer InternAgile TalentIT / Software Engineeringchristhomson23 Jan 2019 +
+ CLOSED +
+
4Kitchen Hand InternYarra River GrillHospitalityjohndoe25 Jan 2019 +
+ CANCELLED +
+
- -
New Registered Users (Last month)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#First NameLast NameUsernameIndustryMember Since
1DavidChandavidchanDesign(Graphic, digital, textile, UX/UI)21 Jan 2019
2DavidChandavidchanDesign(Graphic, digital, textile, UX/UI)21 Jan 2019
3DavidChandavidchanDesign(Graphic, digital, textile, UX/UI)21 Jan 2019
+ +
New Registered Users (Last month)
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#First NameLast NameUsernameIndustryMember Since
1DavidChandavidchanDesign(Graphic, digital, textile, UX/UI)21 Jan 2019
2DavidChandavidchanDesign(Graphic, digital, textile, UX/UI)21 Jan 2019
3DavidChandavidchanDesign(Graphic, digital, textile, UX/UI)21 Jan 2019
- -
New Ads (Last month)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#PositionCompanyIndustryPosted DateApplication Status
1Graphic Design InternSierra Delta CreativeDesign07 Jan 2019 -
- ON -
-
2Barista InternBrunettiHospitality21 Jan 2019 -
- OFF -
-
3Web Developer InternAgile TalentIT / Software Engineering23 Jan 2019 -
- CLOSED -
-
4Kitchen Hand InternYarra River GrillHospitality25 Jan 2019 -
- CANCELLED -
-
+ +
New Ads (Last month)
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#PositionCompanyIndustryPosted DateApplication Status
1Graphic Design InternSierra Delta CreativeDesign07 Jan 2019 +
+ ON +
+
2Barista InternBrunettiHospitality21 Jan 2019 +
+ OFF +
+
3Web Developer InternAgile TalentIT / Software Engineering23 Jan 2019 +
+ CLOSED +
+
4Kitchen Hand InternYarra River GrillHospitality25 Jan 2019 +
+ CANCELLED +
+
- -
Successful Matches (Last month)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#PositionCompanyIndustryMatched User(ID)Matched Date
1Graphic Design InternSierra Delta CreativeDesigndavidchan07 Jan 2019
2Barista InternBrunettiHospitalityjenniferbrown21 Jan 2019
3Web Developer InternAgile TalentIT / Software Engineeringchristhomson23 Jan 2019
4Kitchen Hand InternYarra River GrillHospitalityjohndoe25 Jan 2019
+ +
Successful Matches (Last month)
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#PositionCompanyIndustryMatched User(ID)Matched Date
1Graphic Design InternSierra Delta CreativeDesigndavidchan07 Jan 2019
2Barista InternBrunettiHospitalityjenniferbrown21 Jan 2019
3Web Developer InternAgile TalentIT / Software Engineeringchristhomson23 Jan 2019
4Kitchen Hand InternYarra River GrillHospitalityjohndoe25 Jan 2019
- -
Unmatched Users (Last month)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#First NameLast NameUsernameIndustryMember Since
1DavidChandavidchanDesign(Graphic, digital, textile, UX/UI)21 Jan 2019
2DavidChandavidchanDesign(Graphic, digital, textile, UX/UI)21 Jan 2019
3DavidChandavidchanDesign(Graphic, digital, textile, UX/UI)21 Jan 2019
+ +
Unmatched Users (Last month)
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#First NameLast NameUsernameIndustryMember Since
1DavidChandavidchanDesign(Graphic, digital, textile, UX/UI)21 Jan 2019
2DavidChandavidchanDesign(Graphic, digital, textile, UX/UI)21 Jan 2019
3DavidChandavidchanDesign(Graphic, digital, textile, UX/UI)21 Jan 2019
- -
Unmatched Ads (Last month)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#PositionCompanyIndustryPosted DateApplication Status
1Graphic Design InternSierra Delta CreativeDesign07 Jan 2019 -
- ON -
-
2Barista InternBrunettiHospitality21 Jan 2019 -
- OFF -
-
3Web Developer InternAgile TalentIT / Software Engineering23 Jan 2019 -
- OFF -
-
4Kitchen Hand InternYarra River GrillHospitality25 Jan 2019 -
- ON -
-
+ +
Unmatched Ads (Last month)
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#PositionCompanyIndustryPosted DateApplication Status
1Graphic Design InternSierra Delta CreativeDesign07 Jan 2019 +
+ ON +
+
2Barista InternBrunettiHospitality21 Jan 2019 +
+ OFF +
+
3Web Developer InternAgile TalentIT / Software Engineering23 Jan 2019 +
+ OFF +
+
4Kitchen Hand InternYarra River GrillHospitality25 Jan 2019 +
+ ON +
+
- -
- - + +
+ + +
- -
-
+
+ + diff --git a/src/assets/scripts/user-add/user-add.html b/src/assets/scripts/user-add/user-add.html index 1fde923..d51f4a8 100644 --- a/src/assets/scripts/user-add/user-add.html +++ b/src/assets/scripts/user-add/user-add.html @@ -1,530 +1,553 @@ -
-
-
-
-

Add a new User / Referee

- -
-
+ +
+ +
+
+
+
+

Add a new User / Referee

+
+
-
-
+
+ +
-
+
- - - - -
-
-
- -
-
- -
-
New User
-
-
-
-
-
-
-
- First Name - -
-
- Middle Name - -
-
- Last Name - -
-
+ + -
-
- Email Address - -
-
- Phone Number - -
-
- State - -
-
+ +
+
+
+ +
+
+ +
+
New User
+
+
+
+
+ +
+
+ First Name + +
+
+ Middle Name + +
+
+ Last Name + +
+
-
-
- Nationality - -
-
- Visa Type - -
-
- Language (Select one or more) - -
-
+
+
+ Email Address + +
+
+ Phone Number + +
+
+ State + +
+
-
-
- Education - -
-
+
+
+ Nationality + +
+
+ Visa Type + +
+
+ Language (Select one or more) + +
+
-
- -
- Main Classification: - -
-
- Skills: - -
-
-
-
- Password: - -
-
- Confirm Password - -
-
+
+
+ Education + +
+
-
-
- - -
+
-
+
+ Main Classification: + +
+
+ Skills: + +
+
+
+
+ Password: + +
+
+ Confirm Password + +
+
- -
+
+
+ +
-
+ +
+ +
-
-
- -
-
- -
-
New Referee
-
-
-
-
-
-
-
- Name - -
-
- Business Type - -
-
- ABN - -
-
- -
-
- Email Address - -
-
- Phone Number - -
-
- Website - -
-
- - -
-
- Address - -
-
- City - -
-
- State - -
-
- Zip - -
-
- -
-
- Description - -
-
-
-
- Twitter - -
-
- Facebook - -
-
- Instagram - -
-
- Linkedin - -
-
+
+
+
+
+
+ +
+
+ +
+
New Referee
+
+
+
+
+ +
+
+ Name + +
+
+ Business Type + +
+
+ ABN + +
+
+ +
+
+ Email Address + +
+
+ Phone Number + +
+
+ Website + +
+
+ + +
+
+ Address + +
+
+ City + +
+
+ State + +
+
+ Zip + +
+
-
-
- Password: - -
-
- Confirm Password - -
-
- - - - - -
-
-
+
+
+ Description + +
+
+
+
+ Twitter + +
+
+ Facebook + +
+
+ Instagram + +
+
+ Linkedin + +
+
+ +
+
+ Password: + +
+
+ Confirm Password + +
+
+ + +
+
-
- - -
- -
\ No newline at end of file +
+
+ + + +
+ + diff --git a/src/assets/scripts/user-details/user-details.html b/src/assets/scripts/user-details/user-details.html index aa97456..ef416d7 100644 --- a/src/assets/scripts/user-details/user-details.html +++ b/src/assets/scripts/user-details/user-details.html @@ -1,19 +1,22 @@ -
+ +
+ +

User's Profile

- +
- - + +
- +
@@ -21,18 +24,18 @@
-
{{userDetails.name}}
+
{{userDetails.name}}
{{userDetails.personal.bio}}
-
- - - - -
+
+ + + + +
@@ -42,7 +45,7 @@
Your Profile
- +
First Name @@ -57,7 +60,7 @@

{{userDetails.personal.last_name}}

- +
Email Address @@ -72,7 +75,7 @@

{{userDetails.personal.state}}

- +
Nationality @@ -89,100 +92,98 @@
- +
-
- Education - -

{{userDetails.personal.education}}

-
-
+

{{userDetails.personal.education}}

+
+
Main Classification:
-
{{industry}}
+
{{industry}}
-
+
Skills:
-
{{skill}}
+
{{skill}}
- -
-
+ +
- - -
-
- -
-
-
Help NOMIT collecting more data: your information - won't be visible!!
- -
-
- Birthdate -
-
-
- -
-

{{userDetails.personal.dob}}

+
+ + +
+
+ +
+
+
Help NOMIT collecting more data: your information + won't be visible!!
+ +
+
+ Birthdate +
+
+
+
+

{{userDetails.personal.dob}}

-
- Gender -

{{userDetails.personal.gender}}

-
-
- City of Birth -

{{userDetails.personal.city}}

-
- -
-
- Arriving in Australia -
-
-
- -
-

{{userDetails.personal.arriving}}

- +
+ Gender +

{{userDetails.personal.gender}}

+
+
+ City of Birth +

{{userDetails.personal.city}}

+
+
+ +
+
+ Arriving in Australia +
+
+
+
+

{{userDetails.personal.arriving}}

+
-
- Reason for leaving -

{{userDetails.personal.left}}

-
-
- Reason for staying in Australia - -
- +
+ Reason for leaving +

{{userDetails.personal.left}}

+
+
+ Reason for staying in Australia + +
+
-
-
+ -
- \ No newline at end of file + + diff --git a/src/assets/scripts/users/users.html b/src/assets/scripts/users/users.html index 9021c0d..b69422c 100644 --- a/src/assets/scripts/users/users.html +++ b/src/assets/scripts/users/users.html @@ -1,45 +1,48 @@ -
-
-
-

Users

-
+ +
+ +
+
+
+

Users

+
-
- -
+
+ +
-
- -
-
- -
-
{{u.personal.first_name}} {{u.personal.last_name}}
-
{{u.personal.city}}
-
{{u.personal.phone}}
- view user profile - - ban user +
+ +
+
+ +
+
{{u.personal.first_name}} {{u.personal.last_name}}
+
{{u.personal.city}}
+
{{u.personal.phone}}
+ view user profile + + ban user +
-
-
-
-
-
- - - - - +
+
+
+
+ + + + + +
- -
- - - -
+ +
+ + diff --git a/src/index.html b/src/index.html index 65170d1..71abb4f 100755 --- a/src/index.html +++ b/src/index.html @@ -71,29 +71,7 @@ }); - - -
- - - - -
- -
- -
- - - - - -
- - - - \ No newline at end of file