-
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.
Fotos que Yago adicionou, e pesquisas feitas pelo estudante somente no campo de palavras chaves
- Loading branch information
Showing
30 changed files
with
339 additions
and
161 deletions.
There are no files selected for viewing
Binary file not shown.
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
Binary file added
BIN
+112 KB
IdezJobsWeb/IdezJobsWeb/Content/principal/css/imagens/bemVindo2.fw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+111 KB
IdezJobsWeb/IdezJobsWeb/Content/principal/css/imagens/footertexto.fw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+311 KB
IdezJobsWeb/IdezJobsWeb/Content/principal/css/imagens/iestudante.fw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.8 KB
IdezJobsWeb/IdezJobsWeb/Content/principal/css/imagens/log-in-linkedin-small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+289 KB
IdezJobsWeb/IdezJobsWeb/Content/principal/css/imagens/logo_idezjobs.fw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+67.2 KB
IdezJobsWeb/IdezJobsWeb/Content/principal/css/imagens/setaEmpresa.fw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+69.2 KB
IdezJobsWeb/IdezJobsWeb/Content/principal/css/imagens/setaEstudante.fw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+61.5 KB
IdezJobsWeb/IdezJobsWeb/Content/principal/css/imagens/tempresa2.fw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+64.3 KB
IdezJobsWeb/IdezJobsWeb/Content/principal/css/imagens/testudante2.fw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
50 changes: 50 additions & 0 deletions
50
IdezJobsWeb/IdezJobsWeb/Content/principal/css/principal.css
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 @@ | ||
body { | ||
background-image: url('imagens/bg2.fw.png'); | ||
} | ||
|
||
#fullScreen { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
#social { | ||
display: inline-block; | ||
} | ||
|
||
#estudante { | ||
margin-top: 180px; | ||
margin-left: -180px; | ||
text-align: center; | ||
display: inline-block; | ||
} | ||
|
||
#setaEstudante { | ||
margin-top: -200px; | ||
margin-left: 30px; | ||
} | ||
|
||
#center { | ||
display: inline-block; | ||
} | ||
|
||
#linkedin { | ||
text-align: center; | ||
} | ||
|
||
#iJobs { | ||
text-align: center; | ||
margin-top: -230px; | ||
} | ||
|
||
#empresa { | ||
text-align: center; | ||
float: right; | ||
margin-right: -190px; | ||
margin-top: -190px; | ||
} | ||
|
||
#setaEmpresa { | ||
text-align: center; | ||
margin-left: 590px; | ||
margin-top: -80px; | ||
} |
2 changes: 2 additions & 0 deletions
2
IdezJobsWeb/IdezJobsWeb/Content/principal/js/jquery-1.8.3.min.js
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
function onLinkedInLoad() { | ||
IN.Event.on(IN, "auth", function () { onLinkedInLogin(); }); | ||
IN.Event.on(IN, "logout", function () { onLinkedInLogout(); }); | ||
} | ||
|
||
function onLinkedInLogin() { | ||
// we pass field selectors as a single parameter (array of strings) | ||
IN.API.Profile("me") | ||
.fields(["id", "firstName", "lastName", "pictureUrl", "publicProfileUrl", "headline", "industry", "interests", "emailAddress", "honors"]) | ||
.result(function (result) { | ||
console.log(result); | ||
setLoginBadge(result.values[0]); | ||
var dados = { | ||
id: result.values[0].id | ||
}; | ||
console.log("Primeira chamada: " + JSON.stringify(dados)); | ||
|
||
$.ajax({ | ||
type: "POST", | ||
url: "http://localhost:1677/Account/saveUser/", | ||
data: result.values[0], | ||
dataType: 'json', | ||
success: function (result) { | ||
//alert(json.stringify(dados)); | ||
if (result.codigo == 1) { | ||
console.log(result.msg); | ||
} | ||
else { | ||
console.log("Ocorreu algum erro!"); | ||
console.log(result); | ||
} | ||
} | ||
}); | ||
|
||
$.ajax({ | ||
type: "POST", | ||
url: "http://localhost:1677/Account/saveUser/", | ||
data: result.values[0], | ||
dataType: 'json', | ||
success: function (result) { | ||
//alert(json.stringify(dados)); | ||
if (result.codigo == 1) { | ||
console.log(result.msg); | ||
alert("Entrei"); | ||
} | ||
else { | ||
console.log("Ocorreu algum erro!"); | ||
console.log(result); | ||
} | ||
} | ||
}); | ||
|
||
window.location = "http://localhost:1677/CommonUser/Home"; | ||
|
||
}); | ||
} | ||
|
||
function setSessionBadge() { | ||
|
||
} |
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 @@ | ||
alert("Axei"); |
Oops, something went wrong.