File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -2,17 +2,21 @@ import React from 'react';
2
2
import Layout from "@theme/Layout" ;
3
3
import styles from './styles.module.css' ;
4
4
5
+ /**
6
+ * Contact Us Page
7
+ */
8
+
5
9
const Index = ( ) => {
6
10
return (
7
11
< Layout >
8
12
< h1 style = { { marginLeft : '2rem' , marginTop : '1rem' } } > Contact Us</ h1 >
9
13
< div className = { styles . division } >
10
14
< form className = { styles . myform } >
11
- < label className = { styles . mylabel } > Name</ label >
15
+ < label className = { styles . mylabel } htmlFor = "name" > Name</ label >
12
16
< input placeholder = 'Enter your name' className = { styles . myinput } type = "text" name = "user_name" />
13
- < label className = { styles . mylabel } > Email</ label >
17
+ < label className = { styles . mylabel } htmlFor = "email" > Email</ label >
14
18
< input placeholder = 'Enter your email' className = { styles . myinput } type = "email" name = "user_email" />
15
- < label className = { styles . mylabel } > Message</ label >
19
+ < label className = { styles . mylabel } htmlFor = "message" > Message</ label >
16
20
< textarea placeholder = 'Your message...' className = { styles . mytextarea } name = "message" />
17
21
< button className = { styles . inputsubmit } type = "submit" > Send</ button >
18
22
</ form >
You can’t perform that action at this time.
0 commit comments