aboutsummaryrefslogtreecommitdiffstats
path: root/OLD/csci4131/hw6/strap012_hw6/public/addContact.html
blob: 629f9b2e23fc3e205845b162483d9d73976ea133 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<html lang="en">

  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  </head>

  <body>
    <nav class="navbar navbar-default">
     	<div class="container-fluid">
        <ul class="nav navbar-nav">
          <li><a href="/"><b>Home</b></a></li>
          <li><a href="contacts"><b>Contacts</b></a></li>
          <li><a href="addContact"><b>Add Contact</b></a></li>
          <li><a href="stock"><b>Stock Page</b></a></li>
          <li><a href="logout"><b>Logout</b></a></li>
        </ul>
    	</div>
  	</nav>
    <br><br>

    <div class="container">
      <div class="row">
        <p><br /></p>
      </div>

      <div class="row">
        <div class="col-md-4"></div>
        <div class="col-md-4">
          <div class="panel panel-default">
            <form name="addContact" method="post" action="/api/addContact">
              <p></p>
              <table class="table table-bordered table-hover">
                <tbody>
                  <tr>
                    <td class="col-md-6">Name</td>
                    <td class="col-md-6">
                      <div class="form-group">
                        <input type="text" class="form-control" name="name" required>
                      </div>
                    </td>
                  </tr>
                  <tr>
                    <td class="col-md-6">Category</td>
                    <td class="col-md-6">
                      <div class="form-group">
                          <select class="form-control" name="category">
                              <option>Personal</option>
                              <option>Academic</option>
                              <option>Industry</option>
                          </select>
                      </div>
                    </td>
                  </tr>
                  <tr>
                    <td class="col-md-6">Location</td>
                    <td class="col-md-6">
                      <div class="form-group">
                        <input type="text" class="form-control" name="location" required>
                      </div>
                    </td>
                  </tr>
                  <tr>
                    <td class="col-md-6">Contact Information</td>
                    <td class="col-md-6">
                      <div class="form-group">
                        <input type="text" class="form-control" name="contact" required>
                      </div>
                    </td>
                  </tr>
                  <tr>
                    <td class="col-md-6">Email</td>
                    <td class="col-md-6">
                      <div class="form-group">
                        <input type="email" class="form-control" name="email" required>
                      </div>
                    </td>
                  </tr>
                  <tr>
                    <td class="col-md-6">Website Name</td>
                    <td class="col-md-6">
                      <div class="form-group">
                        <input type="url" class="form-control" name="website_name" required maxlength="100">
                      </div>
                    </td>
                  </tr>
                  <tr>
                      <td class="col-md-6"></td>
                      <td class="col-md-6">
                          <input type="submit" value="Submit">
                      </td>
                  </tr>
                </tbody>
              </table>
            </form>
          </div>
        </div>
        <div class="col-md-4"></div>
      </div>
    </div>
  </body>
</html>