label website as optional in the form

This commit is contained in:
me 2025-04-12 18:09:16 +03:00
parent dede3a16c5
commit 0a3d52e303

View file

@ -72,10 +72,10 @@ export default function CommentForm({ url, site, path, setComments, setError })
</div>
<div className="new-comment-user">
<input className="new-comment-username" type="text" name="name" placeholder="שם" minLength="1" required="" />
<input className="new-comment-user-website" type="url" name="user_website" placeholder="אתר" />
<input className="new-comment-user-website" type="url" name="user_website" placeholder="אתר (רשות)" />
</div>
<div className="new-comment-div">
<input className="new-comment-token" type="text" name="token" required="" minLength="1" placeholder="שאלת סינון" />
<input className="new-comment-token" type="text" name="token" required="" minLength="1" placeholder="תשובה לשאלת הסינון" />
<button className="new-comment-submit" type="submit" title="Add a new submission">הוספה</button>
</div>
</form>