Commit 1d1f8210 authored by Evren Kutar's avatar Evren Kutar

v0.0.3.1

add footer to sidebar with version
sign in page fix for turkish
parent 20fa07f2
......@@ -15,9 +15,9 @@ auth.controller('LoginCtrl', function ($scope, $q, $timeout, $routeParams, Gener
// todo: change simple login when api ready
Generator.get_form($scope).then(function(data){
$scope.form = [
"*",
{ key: "password", type: "password"},
{ type: 'submit', title: 'Save' }
{ key: "username", type: "string", title: "Kullanıcı Adı"},
{ key: "password", type: "password", title: "Şifre"},
{ type: 'submit', title: 'Giriş Yap' }
];
});
$scope.onSubmit = function (form) {
......
......@@ -3,7 +3,7 @@
<div class="col-md-4 col-md-offset-4">
<div class="login-panel panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Sign In</h3>
<h3 class="panel-title">Giriş Yap</h3>
</div>
<div class="panel-body">
<span class="label label-warning">{{message}}</span>
......
......@@ -21,6 +21,6 @@
</div>
<!-- /.sidebar-collapse -->
<footer>
<span>v 0.0.3 ® Lorem Ipsum</span>
<span>v <app-version></app-version> ® ZetaOps</span>
</footer>
</div>
This diff is collapsed.
......@@ -7,7 +7,7 @@ angular.module("components/auth/login.html", []).run(["$templateCache", function
" <div class=\"col-md-4 col-md-offset-4\">\n" +
" <div class=\"login-panel panel panel-default\">\n" +
" <div class=\"panel-heading\">\n" +
" <h3 class=\"panel-title\">Sign In</h3>\n" +
" <h3 class=\"panel-title\">Giriş Yap</h3>\n" +
" </div>\n" +
" <div class=\"panel-body\">\n" +
" <span class=\"label label-warning\">{{message}}</span>\n" +
......@@ -957,7 +957,7 @@ angular.module("shared/templates/directives/sidebar.html", []).run(["$templateCa
" </div>\n" +
" <!-- /.sidebar-collapse -->\n" +
" <footer>\n" +
" <span>v 0.0.3 ® Lorem Ipsum</span>\n" +
" <span>v <app-version></app-version> ® ZetaOps</span>\n" +
" </footer>\n" +
"</div>\n" +
"");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment