-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
79 lines (79 loc) · 2.83 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>WaffleJS · Code of Conduct</title>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1,user-scalable=no" />
<script src="https://wafflejs.com/dist/vendor.js"></script>
<script src="https://wafflejs.com/dist/main.js"></script>
<script>
angular
.module('conduct', [])
.controller('conduct', function($scope, $http) {
$scope.submit = function() {
$http.post('https://conduct.wafflejs.com', {
description: $scope.description
}).then(function() {
alert('Thank you. The organizers have been notified.')
$scope.description = null
})
}
})
</script>
<style type="text/css">
textarea {
box-sizing: border-box;
width: 100%;
height: 8em;
}
</style>
</head>
<body>
<header>
<div class="container-fluid">
<div class="row between-xs">
<div class="col-xs-12 col-sm-6 col-md-7">
<h4 class="highlight"><a href="/">WaffleJS</a></h4>
</div>
</div>
</div>
</header>
<main>
<section>
<div class="container-fluid">
<h1>Code of Conduct</h1>
<p>
We want WaffleJS to be a safe and inclusive environment. That’s why
we ask our attendees to follow our <a
href="http://jsconf.com/codeofconduct.html">code of conduct</a>.
</p>
<p>
In the unfortunate case that you see someone violating the code of
conduct, here are some ways you can report it to us:
</p>
<ul>
<li>DM <a href="https://twitter.com/wafflejs">@wafflejs</a>.</li>
<li>Let a co-organizer know, in person or via Twitter. (
<a href="https://twitter.com/visnup">Visnu</a>,
<a href="https://twitter.com/billyroh">Billy</a>,
<a href="https://twitter.com/nexxylove">Emily</a>,
<a href="https://twitter.com/kng">Kelly</a>,
<a href="https://twitter.com/chromakode">Max</a>,
<a href="https://twitter.com/kuychaco">Katrina</a>
)</li>
<li>Anonymously text (650) 735-0005.</li>
<li>Or, anonymously report it via the form below.</li>
</ul>
<form ng-app="conduct" ng-controller="conduct" name="form" ng-submit="submit()">
<p><textarea ng-model="description" placeholder="Anonymously send us a report." autofocus required></textarea></p>
<p>
We’ll review and act on it. If you let us know who you are, we’ll
follow up with you.
</p>
<button ng-disabled="form.$invalid">Report</button>
</form>
</div>
</section>
</main>
</body>
</html>