-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrigindo tela de cadastro de eletivas
- Loading branch information
Showing
245 changed files
with
32,863 additions
and
25 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"development": { | ||
"username": "root", | ||
"password": "password", | ||
"database": "matriculai_development", | ||
"host": "localhost", | ||
"dialect": "mysql" | ||
}, | ||
"test": { | ||
"username": "root", | ||
"password": null, | ||
"database": "database_test", | ||
"host": "127.0.0.1", | ||
"dialect": "mysql" | ||
}, | ||
"production": { | ||
"username": "root", | ||
"password": null, | ||
"database": "database_production", | ||
"host": "127.0.0.1", | ||
"dialect": "mysql" | ||
} | ||
} |
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,23 @@ | ||
{ | ||
"development": { | ||
"username": "root", | ||
"password": "12345", | ||
"database": "matriculai_development", | ||
"host": "localhost", | ||
"dialect": "mysql" | ||
}, | ||
"test": { | ||
"username": "root", | ||
"password": null, | ||
"database": "database_test", | ||
"host": "127.0.0.1", | ||
"dialect": "mysql" | ||
}, | ||
"production": { | ||
"username": "root", | ||
"password": null, | ||
"database": "database_production", | ||
"host": "127.0.0.1", | ||
"dialect": "mysql" | ||
} | ||
} |
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,23 @@ | ||
{ | ||
"development": { | ||
"username": "eu", | ||
"password": "12345", | ||
"database": "matriculai_development", | ||
"host": "localhost", | ||
"dialect": "mysql" | ||
}, | ||
"test": { | ||
"username": "root", | ||
"password": null, | ||
"database": "database_test", | ||
"host": "127.0.0.1", | ||
"dialect": "mysql" | ||
}, | ||
"production": { | ||
"username": "root", | ||
"password": null, | ||
"database": "database_production", | ||
"host": "127.0.0.1", | ||
"dialect": "mysql" | ||
} | ||
} |
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,23 @@ | ||
{ | ||
"development": { | ||
"username": "eu", | ||
"password": "12345", | ||
"database": "matriculai", | ||
"host": "localhost", | ||
"dialect": "mysql" | ||
}, | ||
"test": { | ||
"username": "root", | ||
"password": null, | ||
"database": "database_test", | ||
"host": "127.0.0.1", | ||
"dialect": "mysql" | ||
}, | ||
"production": { | ||
"username": "root", | ||
"password": null, | ||
"database": "database_production", | ||
"host": "127.0.0.1", | ||
"dialect": "mysql" | ||
} | ||
} |
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,13 @@ | ||
import React from "react"; | ||
import RoutesApp from "./routes"; | ||
import { AuthProvider } from "./contexts/auth"; | ||
import GlobalStyle from "./styles/global"; | ||
|
||
const App = () => ( | ||
<AuthProvider> | ||
<RoutesApp /> | ||
<GlobalStyle /> | ||
</AuthProvider> | ||
); | ||
|
||
export default App; |
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 @@ | ||
import React from "react"; | ||
import RoutesApp from "./routes"; | ||
import { AuthProvider } from "./contexts/auth"; | ||
//import GlobalStyle from "./styles/global"; | ||
|
||
const App = () => ( | ||
<AuthProvider> | ||
<RoutesApp /> | ||
</AuthProvider> | ||
); | ||
|
||
export default App; |
20 changes: 20 additions & 0 deletions
20
.history/frontend/src/components/Button/index_20231122103713.js
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,20 @@ | ||
import React from "react"; | ||
import * as C from "./styles"; | ||
|
||
const Button = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick}> | ||
{Text} | ||
</C.Button> | ||
); | ||
}; | ||
|
||
export default Button; | ||
|
||
const ButtonCadastrar = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick} padding='10'> | ||
{Text} | ||
</C.Button> | ||
); | ||
}; |
20 changes: 20 additions & 0 deletions
20
.history/frontend/src/components/Button/index_20231122103752.js
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,20 @@ | ||
import React from "react"; | ||
import * as C from "./styles"; | ||
|
||
const Button = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick}> | ||
{Text} | ||
</C.Button> | ||
); | ||
}; | ||
|
||
export default Button; | ||
|
||
const ButtonCadastrar = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick} padding='100'> | ||
{Text} | ||
</C.Button> | ||
); | ||
}; |
20 changes: 20 additions & 0 deletions
20
.history/frontend/src/components/Button/index_20231122103823.js
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,20 @@ | ||
import React from "react"; | ||
import * as C from "./styles"; | ||
|
||
const Button = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick}> | ||
{Text} | ||
</C.Button> | ||
); | ||
}; | ||
|
||
export default Button; | ||
|
||
const ButtonCadastrar = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick} padding='20'> | ||
{Text} | ||
</C.Button> | ||
); | ||
}; |
20 changes: 20 additions & 0 deletions
20
.history/frontend/src/components/Button/index_20231122104238.js
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,20 @@ | ||
import React from "react"; | ||
import * as C from "./styles"; | ||
|
||
const Button = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick}> | ||
{Text} | ||
</C.Button> | ||
); | ||
}; | ||
|
||
export default Button; | ||
|
||
const ButtonCadastrar = ({ Text, onClick, Type = "button", PaddingBottom='20' }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick} > | ||
{Text} | ||
</C.Button> | ||
); | ||
}; |
20 changes: 20 additions & 0 deletions
20
.history/frontend/src/components/Button/index_20231122104431.js
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,20 @@ | ||
import React from "react"; | ||
import * as C from "./styles"; | ||
|
||
const Button = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick}> | ||
{Text} | ||
</C.Button> | ||
); | ||
}; | ||
|
||
export default Button; | ||
|
||
const ButtonCadastrar = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick} > | ||
{Text} | ||
</C.Button> | ||
); | ||
}; |
21 changes: 21 additions & 0 deletions
21
.history/frontend/src/components/Button/index_20231123004750.js
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,21 @@ | ||
import React from "react"; | ||
import * as C from "./styles"; | ||
|
||
const Button = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick}> | ||
{Text} | ||
</C.Button> | ||
); | ||
}; | ||
|
||
export default Button; | ||
|
||
const ButtonCadastrar = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick} > | ||
{Text} | ||
</C.Button> | ||
); | ||
}; | ||
export { ButtonCadastrar }; |
21 changes: 21 additions & 0 deletions
21
.history/frontend/src/components/Button/index_20231123004813.js
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,21 @@ | ||
import React from "react"; | ||
import * as C from "./styles"; | ||
|
||
const Button = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick}> | ||
{Text} | ||
</C.Button> | ||
); | ||
}; | ||
|
||
export default Button; | ||
|
||
const ButtonCadastrar = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick} > | ||
{Text} | ||
</C.Button> | ||
); | ||
}; | ||
export default{ ButtonCadastrar }; |
21 changes: 21 additions & 0 deletions
21
.history/frontend/src/components/Button/index_20231123004815.js
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,21 @@ | ||
import React from "react"; | ||
import * as C from "./styles"; | ||
|
||
const Button = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick}> | ||
{Text} | ||
</C.Button> | ||
); | ||
}; | ||
|
||
export default Button; | ||
|
||
const ButtonCadastrar = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick} > | ||
{Text} | ||
</C.Button> | ||
); | ||
}; | ||
export default{ ButtonCadastrar }; |
21 changes: 21 additions & 0 deletions
21
.history/frontend/src/components/Button/index_20231123004829.js
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,21 @@ | ||
import React from "react"; | ||
import * as C from "./styles"; | ||
|
||
const Button = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick}> | ||
{Text} | ||
</C.Button> | ||
); | ||
}; | ||
|
||
export default Button; | ||
|
||
const ButtonCadastrar = ({ Text, onClick, Type = "button" }) => { | ||
return ( | ||
<C.Button type={Type} onClick={onClick} > | ||
{Text} | ||
</C.Button> | ||
); | ||
}; | ||
export { ButtonCadastrar }; |
15 changes: 15 additions & 0 deletions
15
.history/frontend/src/components/Footer/index_20231122111928.js
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,15 @@ | ||
import React from "react"; | ||
import * as C from "./styles"; | ||
|
||
const Input = ({ type, placeholder, value, onChange }) => { | ||
return ( | ||
<C.Input | ||
value={value} | ||
onChange={onChange} | ||
type={type} | ||
placeholder={placeholder} | ||
/> | ||
); | ||
}; | ||
|
||
export default Input; |
15 changes: 15 additions & 0 deletions
15
.history/frontend/src/components/Footer/index_20231122134056.js
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,15 @@ | ||
import React from "react"; | ||
import * as C from "./styles"; | ||
|
||
const Footer = ({ type, placeholder, value, onChange }) => { | ||
return ( | ||
<C.Input | ||
value={value} | ||
onChange={onChange} | ||
type={type} | ||
placeholder={placeholder} | ||
/> | ||
); | ||
}; | ||
|
||
export default Input; |
Oops, something went wrong.