IanTDuncan / MealTime

Project for CSC 480
0 stars 0 forks source link

Addition of features or password_change_activity.xml #110

Closed bdshanks-28 closed 4 months ago

bdshanks-28 commented 4 months ago

Addition of features or password_change_activity.xml

Description:

Addition of features needed to reset a user's password from this help page.

Steps to Reproduce:

N/A

Expected vs. Actual Behavior:

N/A

Code Snippets:

N/A

Environment Details:

Operating System: Android Kotlin Version: 1.5.21 Android Studio Version: 4.2.1 Gradle Version: 7.0.2

For Issue Resolution:

Discussed what this page would need with Aleks and Kerry.

For Investigations/Research:

Team discussion helped outline what this will contain.

Current Status:

Completed

bdshanks-28 commented 4 months ago

Addition of features or password_change_activity.xml

Description:

Addition of features needed to reset a user's password from this help page.

Steps to Reproduce:

N/A

Expected vs. Actual Behavior:

N/A

Code Snippets:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent">

<EditText android:id="@+id/editTextNewPassword" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="20dp" android:hint="New Password" android:inputType="textPassword" android:minHeight="48dp" />

<EditText
    android:id="@+id/editTextConfirmPassword"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/editTextNewPassword"
    android:layout_marginTop="20dp"
    android:hint="Same password as above"
    android:inputType="textPassword"
    android:minHeight="48dp" />

<Button
    android:id="@+id/confirmChange"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/editTextNewPassword"
    android:layout_marginTop="71dp"
    android:text="Confirm Change" />

<Button android:id="@+id/buttonBack" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@id/confirmChange" android:layout_marginTop="17dp" android:text="Back" />

Environment Details:

Operating System: Android Kotlin Version: 1.5.21 Android Studio Version: 4.2.1 Gradle Version: 7.0.2

For Issue Resolution:

Discussed what this page would need with Aleks and Kerry.

For Investigations/Research:

Team discussion helped outline what this will contain.

Current Status:

Completed