-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
108 lines (95 loc) · 3.68 KB
/
form.html
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
107
108
<!DOCTYPE html>
<html>
<head>
<title>Form</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
</div>
</nav>
<br>
<h1>Add New Interest</h1>
<br>
<form>
<div class="form-group">
<label for="Name_1">Interest Name</label>
<input type="text" class="form-control" id="Name_1" placeholder="Name">
</div>
<br>
<div class="form-group">
<label for="Textarea">Text About Interest</label>
<textarea class="form-control" id="Textarea" rows="4"></textarea>
</div>
<br>
<div class="row">
<div class="col-sm-5">
<div class="form-group">
<label for="File">Upload Local Image:</label>
<input type="file" class="form-control-file" id="File">
</div>
</div>
<div class="col-sm-5">
<div class="form-group">
<label for="Select">Select # Tweets to Display:</label>
<select class="form-control" id="Select">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
</div>
</div>
<br>
<p>On a scale of 1-5, how interested in this for you?</p>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="inlineCheckbox1" value="option1">
<label class="form-check-label" for="inlineCheckbox1">1</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="inlineCheckbox2" value="option2">
<label class="form-check-label" for="inlineCheckbox2">2</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="inlineCheckbox3" value="option3">
<label class="form-check-label" for="inlineCheckbox3">3</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="inlineCheckbox4" value="option4">
<label class="form-check-label" for="inlineCheckbox4">4</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="inlineCheckbox5" value="option5">
<label class="form-check-label" for="inlineCheckbox5">5</label>
</div>
<br><br>
<p>Login to Finish Submitting</p>
<div class="row">
<div class="col-sm-5">
<div class="form-group">
<input type="text" class="form-control" id="Name_2" placeholder="Username">
</div>
</div>
<div class="col-sm-5">
<div class="form-group">
<input type="password" class="form-control" id="Password" placeholder="Password">
</div>
</div>
</div>
<br><br>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</body>
</html>