-
-
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.
test for workflow, it should now pass
- Loading branch information
1 parent
05f20df
commit 21c9b55
Showing
6 changed files
with
79 additions
and
31 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
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,6 +1,6 @@ | ||
import React from "react"; | ||
import { ProfileProps } from "../types"; | ||
import "../profile.css"; | ||
import React from 'react'; | ||
import { ProfileProps } from '../types'; | ||
import '../profile.css'; | ||
|
||
interface User { | ||
username: string; | ||
|
@@ -12,12 +12,12 @@ interface User { | |
} | ||
|
||
const user: User = { | ||
username: "BobTest", | ||
displayName: "Bob Test", | ||
email: "[email protected]", | ||
phone: "+1 (234) 567-890", | ||
company: "Test Guys Inc.", | ||
link: "https://aws.amazon.com", | ||
username: 'BobTest', | ||
displayName: 'Bob Test', | ||
email: '[email protected]', | ||
phone: '+1 (234) 567-890', | ||
company: 'Test Guys Inc.', | ||
link: 'https://aws.amazon.com', | ||
}; | ||
|
||
const Profile: React.FC<ProfileProps> = ({ isDarkMode }) => { | ||
|
@@ -26,9 +26,9 @@ const Profile: React.FC<ProfileProps> = ({ isDarkMode }) => { | |
<div className="left-container"> | ||
<div className="profile-settings"> | ||
<div className="profile-picture"> | ||
<img | ||
src="https://m.media-amazon.com/images/I/51IdQIkjlBL._AC_UF894,1000_QL80_.jpg" | ||
alt="Profile" | ||
<img | ||
src="https://m.media-amazon.com/images/I/51IdQIkjlBL._AC_UF894,1000_QL80_.jpg" | ||
alt="Profile" | ||
/> | ||
</div> | ||
<div className="profile-info"> | ||
|
@@ -68,7 +68,12 @@ const Profile: React.FC<ProfileProps> = ({ isDarkMode }) => { | |
</div> | ||
<button className="submit-button">Submit</button> | ||
<button className="logout-button logout-button-styled">Logout</button> | ||
<a className="aws-login-button submit-button" href={user.link} target="_blank" rel="noopener noreferrer"> | ||
<a | ||
className="aws-login-button submit-button" | ||
href={user.link} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
AWS Log-in Information | ||
</a> | ||
</div> | ||
|
@@ -102,22 +107,42 @@ const Profile: React.FC<ProfileProps> = ({ isDarkMode }) => { | |
<div className="input-container bordered"> | ||
<label>Radio Options</label> | ||
<div> | ||
<input type="radio" id="radio1" name="radioOption" value="radio1" /> | ||
<input | ||
type="radio" | ||
id="radio1" | ||
name="radioOption" | ||
value="radio1" | ||
/> | ||
<label htmlFor="radio1">Radio 1</label> | ||
</div> | ||
<div> | ||
<input type="radio" id="radio2" name="radioOption" value="radio2" /> | ||
<input | ||
type="radio" | ||
id="radio2" | ||
name="radioOption" | ||
value="radio2" | ||
/> | ||
<label htmlFor="radio2">Radio 2</label> | ||
</div> | ||
</div> | ||
<div className="input-container bordered"> | ||
<label htmlFor="checkboxOptions">Checkbox Options</label> | ||
<div> | ||
<input type="checkbox" id="checkbox1" name="checkboxOptions" value="checkbox1" /> | ||
<input | ||
type="checkbox" | ||
id="checkbox1" | ||
name="checkboxOptions" | ||
value="checkbox1" | ||
/> | ||
<label htmlFor="checkbox1">Checkbox 1</label> | ||
</div> | ||
<div> | ||
<input type="checkbox" id="checkbox2" name="checkboxOptions" value="checkbox2" /> | ||
<input | ||
type="checkbox" | ||
id="checkbox2" | ||
name="checkboxOptions" | ||
value="checkbox2" | ||
/> | ||
<label htmlFor="checkbox2">Checkbox 2</label> | ||
</div> | ||
</div> | ||
|
@@ -127,7 +152,12 @@ const Profile: React.FC<ProfileProps> = ({ isDarkMode }) => { | |
</div> | ||
<div className="input-container bordered"> | ||
<label htmlFor="tagSelector">Tag Selector</label> | ||
<input type="text" id="tagSelector" name="tagSelector" placeholder="Add tags..." /> | ||
<input | ||
type="text" | ||
id="tagSelector" | ||
name="tagSelector" | ||
placeholder="Add tags..." | ||
/> | ||
</div> | ||
<div className="input-container bordered"> | ||
<label htmlFor="numberInput">Enter a Number</label> | ||
|
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