Skip to content

Commit 60efbae

Browse files
committed
first commit
0 parents  commit 60efbae

File tree

9 files changed

+7776
-0
lines changed

9 files changed

+7776
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.netlify/state.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"siteId": "c31bbb90-02c0-49d9-aae2-027af5a040ee"
3+
}

index.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<form name="contact" method="POST" data-netlify="true">
2+
<p>
3+
<label>Your Name: <input type="text" name="name" /></label>
4+
</p>
5+
<p>
6+
<label>Your Email: <input type="email" name="email" /></label>
7+
</p>
8+
<p>
9+
<label>Your Role: <select name="role[]" multiple>
10+
<option value="leader">Leader</option>
11+
<option value="follower">Follower</option>
12+
</select></label>
13+
</p>
14+
<p>
15+
<label>Message: <textarea name="message"></textarea></label>
16+
</p>
17+
<p>
18+
<button type="submit">Send</button>
19+
</p>
20+
</form>

lambda/submission-created.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

netlify.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[build]
2+
command = "yarn build"
3+
functions = "lambda" # netlify-lambda reads this
4+
publish = "build"

0 commit comments

Comments
 (0)