-
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.
- Loading branch information
1 parent
57b4c6d
commit 3a35471
Showing
2 changed files
with
53 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,49 @@ | ||
import { CurrencyDollarIcon, SwitchVerticalIcon } from "@heroicons/react/outline" | ||
|
||
import styles from "../../styles/Transaction.module.css" | ||
|
||
function TransactionForm() { | ||
return <div></div> | ||
return <div className={styles.container}> | ||
<h3 className={styles.formTitle}> Send Payment / Request</h3> | ||
|
||
<form> | ||
<div className={styles.formContainer}> | ||
<div className={styles.swapContainer}> | ||
<SwitchVerticalIcon className={styles.swapIcon} /> | ||
<p className={styles.swapText}>Swap to/from</p> | ||
</div> | ||
|
||
<div className={styles.formBody}> | ||
<div className={styles.formInputContainer}> | ||
<h4 className={styles.formInputTitle}> To </h4> | ||
<input className={styles.formInput} type="text" autoComplete={false} /> | ||
|
||
</div> | ||
|
||
<div className={styles.formInputContainer}> | ||
<h4 className={styles.formInputTitle}> Message </h4> | ||
<input className={styles.formInput} type="text" autoComplete={false} /> | ||
</div> | ||
</div> | ||
|
||
<div className={styles.formFooter}> | ||
<h4 className={styles.footerTitle}> Amount</h4> | ||
<div className={styles.footerContainer}> | ||
<div className={styles.amountContainer}> | ||
<div className={styles.inputContainer}> | ||
<CurrencyDollarIcon className={styles.dollarIcon} /> | ||
<input className={styles.formInput} type="number" autoComplete={false} /> | ||
</div> | ||
</div> | ||
<button className={styles.sendButton} type="submit"> Send </button> | ||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
</form> | ||
|
||
</div> | ||
} | ||
|
||
export default TransactionForm |
3a35471
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
eth-bootcamp-j1cw – ./TodoList
eth-bootcamp-j1cw-git-master-rahul-prasad-07.vercel.app
eth-bootcamp-j1cw-rahul-prasad-07.vercel.app
eth-bootcamp-j1cw.vercel.app