diff options
Diffstat (limited to 'src/components/editors/contact-editor.js')
-rw-r--r-- | src/components/editors/contact-editor.js | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/src/components/editors/contact-editor.js b/src/components/editors/contact-editor.js new file mode 100644 index 0000000..325f4f4 --- /dev/null +++ b/src/components/editors/contact-editor.js @@ -0,0 +1,66 @@ +/* OpenBills-web - Web based libre billing software + * Copyright (C) 2022 Vidhu Kant Sharma <vidhukant@vidhukant.xyz> + + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. + */ + +import { Contact } from './../../classes/client'; +import './scss/contact-editor.scss'; + +import { useState } from 'react'; + +const ContactEditor = (props) => { + const [name, setName] = useState(""); + const [phones, setPhones] = useState(""); + const [emails, setEmails] = useState(""); + const [website, setWebsite] = useState(""); + + return ( + <div className={"contact-editor"}> + <p className={"heading"}>{props.heading}</p> + + <div className={"labels-wrapper"}> + <label> + Contact Name: + <input + type="text" name="name" + value={name} onChange={(e) => setName(e.target.value)} /> + </label> + + <label> + Website: + <input + type="text" name="name" + value={website} onChange={(e) => setWebsite(e.target.value)} /> + </label> + + <label> + Phone: + <textarea + type="text" name="name" + value={phones} onChange={(e) => setPhones(e.target.value)} /> + </label> + + <label> + E-mail: + <textarea + type="text" name="name" + value={emails} onChange={(e) => setEmails(e.target.value)} /> + </label> + </div> + </div> + ); +} + +export default ContactEditor; |