From f24889230c76baf14d97daec4265554a03b81820 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Mon, 18 Nov 2019 10:27:00 +0100 Subject: [PATCH] Login screens: Captch screen (UI) --- .../features/login/LoginCaptchaFragment.kt | 34 +++++++++++++++++++ .../res/layout/fragment_login_captcha.xml | 34 +++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 vector/src/main/java/im/vector/riotx/features/login/LoginCaptchaFragment.kt create mode 100644 vector/src/main/res/layout/fragment_login_captcha.xml diff --git a/vector/src/main/java/im/vector/riotx/features/login/LoginCaptchaFragment.kt b/vector/src/main/java/im/vector/riotx/features/login/LoginCaptchaFragment.kt new file mode 100644 index 0000000000..1490f3d5e0 --- /dev/null +++ b/vector/src/main/java/im/vector/riotx/features/login/LoginCaptchaFragment.kt @@ -0,0 +1,34 @@ +/* + * Copyright 2019 New Vector Ltd + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package im.vector.riotx.features.login + +import im.vector.riotx.R +import javax.inject.Inject + +/** + * In this screen, the user is asked to confirm he is not a robot + */ +class LoginCaptchaFragment @Inject constructor() : AbstractLoginFragment() { + + override fun getLayoutResId() = R.layout.fragment_login_captcha + + // TODO + + override fun resetViewModel() { + // Nothing to do + } +} diff --git a/vector/src/main/res/layout/fragment_login_captcha.xml b/vector/src/main/res/layout/fragment_login_captcha.xml new file mode 100644 index 0000000000..e3ba0ade22 --- /dev/null +++ b/vector/src/main/res/layout/fragment_login_captcha.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + +