-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sass implementation (instead of CSS)
- Loading branch information
Showing
22 changed files
with
54 additions
and
330 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
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,22 +1,10 @@ | ||
import React from 'react'; | ||
import ReactDOM from 'react-dom'; | ||
import App from './App'; | ||
import * as serviceWorkerRegistration from './serviceWorkerRegistration'; | ||
import reportWebVitals from './reportWebVitals'; | ||
|
||
ReactDOM.render( | ||
<React.StrictMode> | ||
<App /> | ||
</React.StrictMode>, | ||
document.getElementById('root') | ||
); | ||
|
||
// If you want your app to work offline and load faster, you can change | ||
// unregister() to register() below. Note this comes with some pitfalls. | ||
// Learn more about service workers: https://cra.link/PWA | ||
serviceWorkerRegistration.unregister(); | ||
|
||
// If you want to start measuring performance in your app, pass a function | ||
// to log results (for example: reportWebVitals(console.log)) | ||
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals | ||
reportWebVitals(); |
File renamed without changes.
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.
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,42 +1,50 @@ | ||
import React, { useState } from 'react'; | ||
import { | ||
IonContent, | ||
IonPage, | ||
IonTitle, | ||
IonInput, | ||
IonButton, | ||
IonItem } from '@ionic/react'; | ||
import "./Register1_NameMail.css"; | ||
import React, { useState } from "react"; | ||
import { | ||
IonContent, | ||
IonPage, | ||
IonTitle, | ||
IonInput, | ||
IonButton, | ||
IonItem, | ||
} from "@ionic/react"; | ||
import "./Register1_NameMail.scss"; | ||
|
||
const Register1_NameMail: React.FC = () => { | ||
|
||
const [mail, setMail] = useState<string>(); | ||
const [username, setUsername] = useState<string>(); | ||
|
||
return ( | ||
<IonPage> | ||
|
||
<IonContent> | ||
|
||
<IonTitle className="title"> | ||
{" "} | ||
Escolha seu< br/> Username email{" "} | ||
{" "} | ||
Escolha seu | ||
<br /> Username email{" "} | ||
</IonTitle> | ||
|
||
<IonItem className="input-mail"> | ||
<IonInput value={mail} placeholder="[email protected]" onIonChange={e => setMail(e.detail.value!)} clearInput></IonInput> | ||
</IonItem> | ||
<IonItem className="input-username"> | ||
<IonInput value={username} placeholder="a" onIonChange={e => setUsername(e.detail.value!)} clearInput></IonInput> | ||
</IonItem> | ||
|
||
<IonButton color="primary" className="button"> | ||
<IonItem className="input-mail"> | ||
<IonInput | ||
value={mail} | ||
placeholder="[email protected]" | ||
onIonChange={(e) => setMail(e.detail.value!)} | ||
clearInput | ||
></IonInput> | ||
</IonItem> | ||
<IonItem className="input-username"> | ||
<IonInput | ||
value={username} | ||
placeholder="username" | ||
onIonChange={(e) => setUsername(e.detail.value!)} | ||
clearInput | ||
></IonInput> | ||
</IonItem> | ||
|
||
<IonButton color="primary" className="button"> | ||
Confirmar | ||
</IonButton> | ||
|
||
</IonContent> | ||
</IonPage> | ||
); | ||
}; | ||
|
||
export default Register1_NameMail; | ||
export default Register1_NameMail; |
File renamed without changes.
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.
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.
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.
Oops, something went wrong.