Commit 4ac69ce407e1d7af868957dfc9d5b7986a9bc4a7
0 parents
Exists in
master
First commit with front end structure
Showing 2 changed files with 84 additions and 0 deletions Side-by-side Diff
.gitignore
View file @
4ac69ce
... | ... | @@ -0,0 +1,47 @@ |
1 | +# Logs | |
2 | +logs | |
3 | +*.log | |
4 | +npm-debug.log* | |
5 | + | |
6 | +# Runtime data | |
7 | +pids | |
8 | +*.pid | |
9 | +*.seed | |
10 | +*.pid.lock | |
11 | + | |
12 | +# Directory for instrumented libs generated by jscoverage/JSCover | |
13 | +lib-cov | |
14 | + | |
15 | +# Coverage directory used by tools like istanbul | |
16 | +coverage | |
17 | + | |
18 | +# nyc test coverage | |
19 | +.nyc_output | |
20 | + | |
21 | +#mac | |
22 | +.DS_Store | |
23 | + | |
24 | +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | |
25 | +.grunt | |
26 | + | |
27 | +# node-waf configuration | |
28 | +.lock-wscript | |
29 | + | |
30 | +# Compiled binary addons (http://nodejs.org/api/addons.html) | |
31 | +build/Release | |
32 | + | |
33 | +# Dependency directories | |
34 | +node_modules | |
35 | +jspm_packages | |
36 | + | |
37 | +# Optional npm cache directory | |
38 | +.npm | |
39 | + | |
40 | +# Optional eslint cache | |
41 | +.eslintcache | |
42 | + | |
43 | +# Optional REPL history | |
44 | +.node_repl_history | |
45 | + | |
46 | +# Output of 'npm pack' | |
47 | +*.tgz | |
0 | 48 | \ No newline at end of file |
public/views/index.html
View file @
4ac69ce
... | ... | @@ -0,0 +1,37 @@ |
1 | +<!DOCTYPE html> | |
2 | +<html lang="en"> | |
3 | + <head> | |
4 | + <meta charset="utf-8"> | |
5 | + <!-- Ensure that Bootstrap is mobile friendly --> | |
6 | + <meta name="viewport" content="width=device-width, initial-scale=1"> | |
7 | + <!-- Latest compiled and minified CSS --> | |
8 | + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
9 | + | |
10 | + <!-- jQuery library --> | |
11 | + <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> | |
12 | + | |
13 | + <!-- Latest compiled JavaScript --> | |
14 | + <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | |
15 | + </head> | |
16 | + <body> | |
17 | + <nav class="fixed-nav-bar group nav-collapse"> | |
18 | + <ul class="group"> | |
19 | + <!-- <li><a href="Files/PaulWallaceResume.6.1.1.pdf" class="resume-link" target="_blank">Resume</a></li> --> | |
20 | + </ul> | |
21 | + <a href="#" id="pull" ontouchend="this.onclick=fix">Menu</a> | |
22 | + </nav> | |
23 | + | |
24 | + <form action=""> | |
25 | + From:<br> | |
26 | + <input type="text" name="firstname" value="Mickey"> | |
27 | + <br> | |
28 | + To:<br> | |
29 | + <input type="text" name="lastname" value="Mouse"> | |
30 | + <br><br> | |
31 | + <input type="submit" value="Submit"> | |
32 | + </form> | |
33 | + | |
34 | + <p>If you click the "Submit" button, the form-data will be sent to a page called "action_page.php".</p> | |
35 | + | |
36 | + </body> | |
37 | +</html> | |
0 | 38 | \ No newline at end of file |