aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-02-05 21:16:42 -0500
committerAndrew Lee <alee14498@protonmail.com>2024-02-05 21:24:35 -0500
commitbf7ebfa81791703959015c9b1b8ddbc4edae5ee3 (patch)
tree730e9eb3cc0843e93a2e02007f1f9f63f32df8c8 /src/components
parent0fed60dc83db376ddb3f7c835894db29dfe51994 (diff)
downloadpersonal-website-bf7ebfa81791703959015c9b1b8ddbc4edae5ee3.tar.gz
personal-website-bf7ebfa81791703959015c9b1b8ddbc4edae5ee3.tar.bz2
personal-website-bf7ebfa81791703959015c9b1b8ddbc4edae5ee3.zip
Tags in blog post
Diffstat (limited to 'src/components')
-rw-r--r--src/components/GuestbookForm.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/GuestbookForm.jsx b/src/components/GuestbookForm.jsx
index 56f3930..48e043b 100644
--- a/src/components/GuestbookForm.jsx
+++ b/src/components/GuestbookForm.jsx
@@ -64,11 +64,11 @@ class GuestbookForm extends Component {
<div className="card">
<form onSubmit={this.handleSubmit}>
<h2>Submit Message</h2>
- <label htmlFor="name">Name</label>
+ <label htmlFor="name">Name *</label>
<input type="text" name="name" placeholder="John Doe" required value={this.state.name} onChange={this.handleChange} disabled={this.state.isMessageSent}/>
<label htmlFor="website">Your Website (Optional)</label>
<input type="url" name="website" placeholder="https://example.com" value={this.state.website} onChange={this.handleChange} disabled={this.state.isMessageSent}/>
- <label htmlFor="message">Message (Supports <a href="https://www.markdownguide.org/cheat-sheet/" target="_blank">Markdown</a>)</label>
+ <label htmlFor="message">Message * (Supports <a href="https://www.markdownguide.org/cheat-sheet/" target="_blank">Markdown</a>)</label>
<textarea name="message" placeholder="Enter your message here." required value={this.state.message}
onChange={this.handleChange} disabled={this.state.isMessageSent}></textarea>
<button type="submit" disabled={this.state.isMessageSent}>Send</button>