diff --git a/app/Resources/views/base.html.twig b/app/Resources/views/base.html.twig index 8cb6e43..194aa3e 100644 --- a/app/Resources/views/base.html.twig +++ b/app/Resources/views/base.html.twig @@ -8,34 +8,36 @@ -
-
+
+
+ -
Sign In!
+ +
-
+
-

OpenScrum.org

{% block body %}{% endblock %}
diff --git a/src/OpenScrum/InfoBundle/Resources/views/en/index.html.twig b/src/OpenScrum/InfoBundle/Resources/views/en/index.html.twig index bef7f76..eacaf34 100644 --- a/src/OpenScrum/InfoBundle/Resources/views/en/index.html.twig +++ b/src/OpenScrum/InfoBundle/Resources/views/en/index.html.twig @@ -1,5 +1,6 @@ {% extends '::base.html.twig' %} {% block body %} +OpenScrum.org

Welcome to OpenScrum.org!

OpenScrum.org is a web based tool to help development teams to develop using the Scrum methodology.

{% endblock %} diff --git a/src/OpenScrum/InfoBundle/Resources/views/en/privacypolicy.html.twig b/src/OpenScrum/InfoBundle/Resources/views/en/privacypolicy.html.twig new file mode 100644 index 0000000..b52781f --- /dev/null +++ b/src/OpenScrum/InfoBundle/Resources/views/en/privacypolicy.html.twig @@ -0,0 +1,13 @@ +{% extends '::base.html.twig' %} +{% block body %} +

OpenScrum.org's Privacy Policy

+ +

Passwords

+

If you register on our site with a username/password pair, your password is encrypted with a one-way algorithm, which means that neither us, neither a hacker can get your password from our database.

+ +

Personal information

+

All the data you upload on your Profile page is visible to our server administrators. They are, however, not really interested in this kind of data. Also, if you check the "Make my Profile public" checkbox, your Profile will be available to every registered user on the site, so be careful what you enter there.

+ +

Bank account and credit card information

+

If you buy anything from the Store, all your financial data is entered on the PayPal website. We only get your public PayPal data from them (mostly your contact information), no bank account or credit card information is processed by us.

+{% endblock body %} diff --git a/web/images/logo-small.png b/web/images/logo-small.png new file mode 100644 index 0000000..335885c Binary files /dev/null and b/web/images/logo-small.png differ diff --git a/web/skins/default/css/main.css b/web/skins/default/css/main.css index e1b9c38..facc203 100644 --- a/web/skins/default/css/main.css +++ b/web/skins/default/css/main.css @@ -1,9 +1,10 @@ body { margin: 0; font-family: Helvetica, Arial, sans; + font-size: 10pt; } -#app-bar { +#appbar { position: fixed; left: 0; top: 0; @@ -12,27 +13,85 @@ body { color: #c0ffff; height: 32px; padding: 2px; + border-bottom: 1px solid #002e52; } -#appbar-search { +#appbar-logo { float: left; } -#appbar-search input { - width: 190px; +#appbar-logo h1 { + margin: 0; +} + +#appbar-logo img { + border: 0 none; +} + +#appbar-siteinfo { + float: left; + position: absolute; + top: 36px; + left: 6px; + background-color: black; +} + +#appbar-siteinfo a { + color: #c0ffff; +} + +#appbar-siteinfo ul { + margin: 0; + padding: 0; +} + +#appbar-siteinfo ul li { + list-style-type: none; +} + +#appbar-search { + margin-left: auto; + margin-right: auto; + margin-top: 3px; + width: 200px; + height: 28px; + background-color: #95b5ce; + background-image: url('../images/search-bg.png'); + background-repeat: no-repeat; +} + +#appbar-search input[type=text] { + border: 0 none; + padding: 0; + width: 165px; + background-color: transparent; + margin: 3px 0 0 4px; +} + +#appbar-search input[type=submit] { + border: 0 none; + background-color: transparent; + padding: 0; + width: 20px; + height: 20px; + background-image: url('../images/search-button.png'); + margin: 3px 0 0 5px; } #appbar-login { float: right; + background-color: #002e52; + margin: 0; + width: 60px; + height: 27px; + background-image: url('../images/login-button.png'); + background-repeat: no-repeat; + background-position: 5px 8px; + padding-left: 25px; + padding-top: 7px; } -#appbar-search input { - border: 0 none; - background-color: white; - height: 24px; -} - -#app-bar-padding { +#appbar-padding { height: 40px; clear: both; } @@ -49,24 +108,6 @@ body { text-decoration: underline; } -#appbar-siteinfo { - float: left; -} - -#appbar-siteinfo a { - color: #c0ffff; -} - -#appbar-siteinfo ul { - margin: 0; - padding: 0; -} - -#appbar-siteinfo ul li { - list-style-type: none; - display: inline; -} - #footer-wrapper { display: block; } diff --git a/web/skins/default/images/login-button.png b/web/skins/default/images/login-button.png new file mode 100644 index 0000000..fb8a014 Binary files /dev/null and b/web/skins/default/images/login-button.png differ diff --git a/web/skins/default/images/search-bg.png b/web/skins/default/images/search-bg.png new file mode 100644 index 0000000..7010fe1 Binary files /dev/null and b/web/skins/default/images/search-bg.png differ diff --git a/web/skins/default/images/search-button.png b/web/skins/default/images/search-button.png new file mode 100644 index 0000000..eb11836 Binary files /dev/null and b/web/skins/default/images/search-button.png differ