-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (59 loc) · 2.66 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
<!DOCTYPE html>
<html>
<head>
<title>Rollerworks - Open source software</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
</head>
<body>
<div class="container">
<h1><a href="https://github.com/rollerworks/"><img src="img/logo.png" alt="Rollerworks - Open-source software"></a></h1>
<div class="alert alert-info">
<p><i class="glyphicon glyphicon-alert"></i> This website is currently under active development,
for now please take a look at some of our projects.</p>
</div>
<h2>Standalone libraries (Components)</h2>
<div class="row">
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
<a href="https://github.com/rollerworks/search">RollerworksSearch</a>
</div>
<div class="panel-body">
<p>RollerworksSearch provides you with a powerful search system for your PHP applications.</p>
<p>Whether you want to simply search for users in your SQL database, want to provide a powerful
search system for searching products using an ElasticSearch back-end or are looking for an
easy way to abstract filtering for a reporter, everything is possible.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
<a href="https://github.com/rollerworks/rollerworks-uri-encoder">RollerworksUriEncoder</a>
</div>
<div class="panel-body">
<p>A simple library, to safely encode a string for usage in a URI. And some minor extra's, like string compression.</p>
</div>
</div>
</div>
</div>
<h2>Symfony bundles</h2>
<div class="row">
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
<a href="https://github.com/rollerworks/PasswordStrengthBundle">PasswordStrengthBundle <span class="text-danger">(<i class="glyphicon glyphicon-fire"></i> Populair)</span></a>
</div>
<div class="panel-body">
<p>This Symfony bundle provides a validator for ensuring strong passwords in your application.</p>
</div>
</div>
</div>
</div>
<footer>
<p>Copyright 2012 - 2021 ~ Provided Software packages are released under the
<a href="http://opensource.org/licenses/MIT">MIT license</a>.</p>
</footer>
</div>
</body>
</html>