Skip to content

Commit

Permalink
feat: Updated Contact us page's title, tech coordi email
Browse files Browse the repository at this point in the history
  • Loading branch information
proffapt committed Jan 4, 2024
1 parent a39adc0 commit f909ff9
Showing 1 changed file with 3 additions and 35 deletions.
38 changes: 3 additions & 35 deletions src/components/ContactForm/ContactForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Styles from '../../styles/components/form.module.css';
import host from '../../apiService';

function ContactForm() {
document.title = "Contact Us | TSG"
const [name, setName] = useState('');
const [rollNumber, setRollNumber] = useState('');
const [email, setEmail] = useState('');
Expand Down Expand Up @@ -60,39 +61,6 @@ function ContactForm() {
<div className="background_overlay">
<div className="container_cf">
<div className="frm--create-account">
{/* <h1 className="frm__title">REACH OUT TO US!</h1>
<form action="" className="frm__create__account">
<div className="frm-group">
<label for="email1">Full Name</label>
<input type="text" id="email1" required />
</div>
<div className="frm-group inline">
<div className="frm-group">
<label for="nick1">Email ID</label>
<input type="text" id="nick1" required />
</div>
<div className="frm-group">
<label for="email1">Mobile Number</label>
<input type="tel" id="email1" required />
</div>
<div className="frm-group">
<label for="email1">Subject</label>
<input type="text" id="email1" required />
</div>
<div className="frm-group">
<label for="email1">Message</label>
<input type="textarea" id="email1" required />
</div>
</div>
<div className="frm-group">
<input
type="submit"
className="frm__btn-primary"
value="SEND"
onclick="return false;"
/>
</div>
</form> */}
<div className={Styles.formContainer}>
<div className={Styles.header}>
<h1>
Expand Down Expand Up @@ -162,8 +130,8 @@ function ContactForm() {
<div className={Styles.footer}>
<p>
For any technical queries, please mail at {' '}
<a href="mailto:tech.[email protected]">
tech.[email protected]
<a href="mailto:tech.[email protected]">
tech.[email protected]
</a>
</p>
</div>
Expand Down

0 comments on commit f909ff9

Please sign in to comment.