summaryrefslogtreecommitdiffstats
path: root/html
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-05-03 20:14:58 -0400
committerrsiddharth <s@ricketyspace.net>2019-05-03 20:14:58 -0400
commit9b66beef9d80f896b15736fe37c0b7221a45311d (patch)
tree1b109edf0e131154b942fceb525d67f59596f55e /html
parent8f36babd77105bc008cb8df30f7cd3f39d0cec51 (diff)
html: Add volunteer/index.html
* html/includes/navbar.html: Update volunteer link. * html/volunteer/index.html: New file.
Diffstat (limited to 'html')
-rw-r--r--html/includes/navbar.html2
-rw-r--r--html/volunteer/index.html69
2 files changed, 70 insertions, 1 deletions
diff --git a/html/includes/navbar.html b/html/includes/navbar.html
index a9915b6..aa2e13a 100644
--- a/html/includes/navbar.html
+++ b/html/includes/navbar.html
@@ -22,7 +22,7 @@
<a href="/join">Join</a>
</div>
<div class="navbar-item">
- <a href="#">Volunteer</a>
+ <a href="/volunteer">Volunteer</a>
</div>
<div class="navbar-item">
<a href="#">Contact</a>
diff --git a/html/volunteer/index.html b/html/volunteer/index.html
new file mode 100644
index 0000000..d9657c4
--- /dev/null
+++ b/html/volunteer/index.html
@@ -0,0 +1,69 @@
+<!--#include virtual="/includes/html-open.html"-->
+
+<!--#include virtual="/includes/header-open.html"-->
+<title>Volunteer &mdash; Free Software Foundation India</title>
+<!--#include virtual="/includes/header-close.html"-->
+
+<!--#include virtual="/includes/body-open.html"-->
+<!--#include virtual="/includes/navbar.html"-->
+
+<div class="container main">
+ <section class="section">
+ <div class="content">
+ <header>
+ <h1>Volunteer</h1>
+ </header>
+
+ <div class="columns">
+ <div class="column is-three-fifths">
+
+ <p>Volunteer for the Free Software Foundation of India.</p>
+
+ <form class="volunteer-form" method="post"
+ action="/volunteer/submit">
+
+ <div class="field">
+ <label class="label name">Name</label>
+ <div class="control">
+ <input name="name" class="input" type="text"
+ placeholder="Your Name">
+ </div>
+ </div>
+
+ <div class="field">
+ <label class="label email">Email</label>
+ <div class="control">
+ <input name="email" class="input" type="email"
+ placeholder="Your Email Address"
+ required>
+ </div>
+ </div>
+
+ <div class="field">
+ <label class="label email">How do you want to help us?</label>
+ <div class="control">
+ <textarea name="help" class="textarea" required></textarea>
+ </div>
+ </div>
+
+ <div class="field">
+ <div class="control">
+ <button class="button is-link" type="submit">
+ Submit
+ </button>
+ </div>
+ </div>
+ </form>
+
+ </div> <!-- end column -->
+ </div> <!-- end columns -->
+
+ </div>
+ </section>
+
+</div>
+
+<!--#include virtual="/includes/footer.html"-->
+<!--#include virtual="/includes/js.html"-->
+<!--#include virtual="/includes/body-close.html"-->
+<!--#include virtual="/includes/html-close.html"-->