summaryrefslogtreecommitdiff
path: root/app/src/main/res/menu/client_dashboard.xml
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2014-05-05 16:06:53 +0200
committerParménides GV <parmegv@sdf.org>2014-05-05 16:06:53 +0200
commit230ae10fb3a0c08cbd16e91fce041133bdf5ae8e (patch)
tree37ab910d47817399301aed25374d5c9fd37cb22c /app/src/main/res/menu/client_dashboard.xml
parent3ab74308e7ba1fda02d3427ec795eac397707199 (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/menu/client_dashboard.xml')
-rw-r--r--app/src/main/res/menu/client_dashboard.xml13
1 files changed, 8 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>