-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfeedback.html
137 lines (81 loc) · 3.52 KB
/
feedback.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<html>
<header>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<script src="angular.js"></script>
</header>
<h1 class="head">
BARCELONE BASEBALL SOFTBALL CLUB
</h1>
<body id="bodyInfo">
<div class="topnav">
<div class="topnav-centered">
<a href="feedback.html" class="active">FEEDBACK</a>
</div>
<a href="schedules.html">SCHEDULES 2020</a>
<a href="honordivision.html">HONOR DIVISION</a>
<a href="homepage.html">HOME</a>
<div class="topnav-right">
<a href="socialmedia.html">SOCIAL MEDIA</a>
<a href="info.html">INFO</a>
</div>
</div>
<div id="grandParentDiv">
<div id="parentDiv">
<div id="div1">
<img id="img1" src="images/teampic1.jpg" alt="pic with cup">
<a class="abutton" href="homepage.html" target="_self"> Click Me !!!</a>
</div>
<div id = "div4">
<div ng-controller="ExampleController">
<form novalidate class="css-form">
<label> Please write any feedback you want to share with us!!</label><br><br>
<label>Name: <input type="text" ng-model="name" required /></label><br>
<label>E-mail: <input type="email" ng-model="email" required /></label><br>
<label> <label><input type="radio" ng-model="gender" value="male" />male</label></label><br>
<label><input type="radio" ng-model="gender" value="female" />female</label><br><br>
<label>Feedback: <input id="feedback" type="text" ng-model="feedback" required /></label>
<div class="popup" onclick="myFunction()">SEND MY FEEDBACK
<span class="popuptext" id="myPopup">Your feedback is sent !!!</span>
</div>
</form>
<label>My name : {{name}}</label><br>
<label>My email : {{email}}</label><br>
<label>My gender : {{gender}}</label><br>
<label>My feedback : {{feedback}}</label><br><br><br>
</div>
</div>
<div id="div1">
<img id="img1" src="images/logos.png" alt="pic with cup">
<a class="abutton" href="socialmedia.html" target="_self"> Click Me !!!</a>
</div>
</div>
</div>
<body ng-app="formExample">
<script>
angular.module('formExample', [])
.controller('ExampleController', ['$scope', function ($scope) {
$scope.master = {};
$scope.update = function (user) {
$scope.master = angular.copy(user);
};
$scope.reset = function () {
$scope.user = angular.copy($scope.master);
};
$scope.reset();
}]);
</script>
</body>
<script>
// When the user clicks on div, open the popup
function myFunction() {
var popup = document.getElementById("myPopup");
popup.classList.toggle("show");
}
</script>
</body>
<div class="navbar">
<a>Did you like our website ??</a>
<a href="feedback.html" class="active">Click Here to send feedback</a>
</div>
</html>