forked from scotch-io/node-website-course
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
61a8675
commit eed883d
Showing
4 changed files
with
36 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,31 @@ | ||
<div class="jumbotron text-center"> | ||
<h1>Contact Page</h1> | ||
|
||
<p>Contact form goes here</p> | ||
<div class="row"> | ||
<div class="col-sm-6 col-sm-offset-3"> | ||
<h2>Contact Us!</h2> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis ullam, tempore exercitationem voluptas deserunt culpa, eligendi nemo iste quas nisi ducimus cum sed earum est, laboriosam in cumque ipsum. Nihil.</p> | ||
|
||
<form action="/contact" method="POST"> | ||
|
||
<div class="form-group"> | ||
<label>Name</label> | ||
<input type="text" name="name" class="form-control"> | ||
</div> | ||
<div class="form-group"> | ||
<label>Email</label> | ||
<input type="text" name="email" class="form-control"> | ||
</div> | ||
<div class="form-group"> | ||
<label>Your Message</label> | ||
<input type="text" name="message" class="form-control"> | ||
</div> | ||
|
||
<div class="form-group text-right"> | ||
<button type="submit" class="btn btn-primary btn-lg">Send</button> | ||
</div> | ||
|
||
</form> | ||
</div> | ||
</div> | ||
</div> |