diff options
author | Parménides GV <parmegv@sdf.org> | 2014-05-05 16:06:53 +0200 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2014-05-05 16:06:53 +0200 |
commit | 230ae10fb3a0c08cbd16e91fce041133bdf5ae8e (patch) | |
tree | 37ab910d47817399301aed25374d5c9fd37cb22c /app/src/main/res | |
parent | 3ab74308e7ba1fda02d3427ec795eac397707199 (diff) |
New menu option: signup.
There is some problem in the maths, because the server says it's ok but
login doesn't work from Android app nor from webapp.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/menu/client_dashboard.xml | 13 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 1 |
2 files changed, 9 insertions, 5 deletions
diff --git a/app/src/main/res/menu/client_dashboard.xml b/app/src/main/res/menu/client_dashboard.xml index 676c07c7..d4e9c879 100644 --- a/app/src/main/res/menu/client_dashboard.xml +++ b/app/src/main/res/menu/client_dashboard.xml @@ -6,18 +6,21 @@ <item android:id="@+id/switch_provider" android:orderInCategory="501" - android:title="@string/switch_provider_menu_option"/> + android:title="@string/switch_provider_menu_option"/> + <item + android:id="@+id/signup_button" + android:showAsAction="ifRoom" + android:title="@string/signup_button" + android:visible="false"/> <item android:id="@+id/login_button" android:showAsAction="ifRoom" android:title="@string/login_button" - android:visible="false"> - </item> + android:visible="false"/> <item android:id="@+id/logout_button" android:showAsAction="ifRoom" android:title="@string/logout_button" - android:visible="false"> - </item> + android:visible="false"/> </menu> diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 492c48c7..5f0e2120 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -116,6 +116,7 @@ <string name="error_no_such_algorithm_exception_user_message">Update the app</string> <string name="login_button">Log In</string> <string name="logout_button">Log Out</string> + <string name="signup_button">Sign Up</string> <string name="setup_error_title">Configuration Error</string> <string name="setup_error_configure_button">Configure</string> <string name="setup_error_close_button">Exit</string> |