{"id":20122808,"url":"https://github.com/amitthecoder/sign-up","last_synced_at":"2026-04-17T14:35:41.693Z","repository":{"id":172967119,"uuid":"650038701","full_name":"amitthecoder/sign-up","owner":"amitthecoder","description":"Sign up page design in Android Studio using xml ( material designe )","archived":false,"fork":false,"pushed_at":"2023-06-06T07:53:18.000Z","size":334,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-02T00:46:45.270Z","etag":null,"topics":["android","android-app","android-application","android-development","android-studio","android-ui","kotlin","kotlin-android","kotlin-language","kotlin-native","material-design","material-ui","signup","signup-page","signup-screen","signup-ui","xml"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/amitthecoder.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-06T07:48:29.000Z","updated_at":"2024-03-28T10:30:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"388bc5cd-f9e4-448a-be7a-4ecaecaa7910","html_url":"https://github.com/amitthecoder/sign-up","commit_stats":null,"previous_names":["amitthecoder/sign-up"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/amitthecoder/sign-up","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitthecoder%2Fsign-up","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitthecoder%2Fsign-up/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitthecoder%2Fsign-up/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitthecoder%2Fsign-up/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amitthecoder","download_url":"https://codeload.github.com/amitthecoder/sign-up/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitthecoder%2Fsign-up/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31933509,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T12:37:54.787Z","status":"ssl_error","status_checked_at":"2026-04-17T12:37:25.095Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","android-app","android-application","android-development","android-studio","android-ui","kotlin","kotlin-android","kotlin-language","kotlin-native","material-design","material-ui","signup","signup-page","signup-screen","signup-ui","xml"],"created_at":"2024-11-13T19:41:15.658Z","updated_at":"2026-04-17T14:35:41.677Z","avatar_url":"https://github.com/amitthecoder.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Screenshot\n\n![Demo](https://raw.githubusercontent.com/amitthecoder/sign-up/main/screenshot.jpg \"Demo\")\n\n## XML Code\n\n```xml \n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003cLinearLayout\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n    xmlns:tools=\"http://schemas.android.com/tools\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:layout_gravity=\"center\"\n    android:gravity=\"center\"\n    android:padding=\"20dp\"\n    android:orientation=\"vertical\"\n    tools:context=\".MainActivity\"\u003e\n\n\n    \u003ccom.google.android.material.textfield.TextInputLayout\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        app:endIconMode=\"clear_text\"\n        android:hint=\"Name\"\u003e\n        \u003ccom.google.android.material.textfield.TextInputEditText\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"/\u003e\n    \u003c/com.google.android.material.textfield.TextInputLayout\u003e\n\n\n    \u003ccom.google.android.material.textfield.TextInputLayout\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        app:endIconMode=\"clear_text\"\n        android:layout_marginTop=\"20dp\"\n        android:hint=\"Date of Birth\"\u003e\n        \u003ccom.google.android.material.textfield.TextInputEditText\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"/\u003e\n    \u003c/com.google.android.material.textfield.TextInputLayout\u003e\n\n\n    \u003ccom.google.android.material.textfield.TextInputLayout\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        app:endIconMode=\"clear_text\"\n        android:layout_marginTop=\"20dp\"\n        android:hint=\"Mobile Number\"\u003e\n        \u003ccom.google.android.material.textfield.TextInputEditText\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"/\u003e\n    \u003c/com.google.android.material.textfield.TextInputLayout\u003e\n\n    \u003ccom.google.android.material.textfield.TextInputLayout\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        app:endIconMode=\"clear_text\"\n        android:layout_marginTop=\"20dp\"\n        android:hint=\"Email id\"\u003e\n        \u003ccom.google.android.material.textfield.TextInputEditText\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"/\u003e\n    \u003c/com.google.android.material.textfield.TextInputLayout\u003e\n\n    \u003ccom.google.android.material.textfield.TextInputLayout\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:layout_marginTop=\"20dp\"\n        app:endIconMode=\"clear_text\"\n        android:hint=\"Username\"\u003e\n        \u003ccom.google.android.material.textfield.TextInputEditText\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"/\u003e\n    \u003c/com.google.android.material.textfield.TextInputLayout\u003e\n\n    \u003ccom.google.android.material.textfield.TextInputLayout\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:layout_marginTop=\"20dp\"\n        app:endIconMode=\"password_toggle\"\n        android:hint=\"Password\"\u003e\n        \u003ccom.google.android.material.textfield.TextInputEditText\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:inputType=\"textPassword\" /\u003e\n    \u003c/com.google.android.material.textfield.TextInputLayout\u003e\n\n    \u003ccom.google.android.material.textfield.TextInputLayout\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:layout_marginTop=\"20dp\"\n        app:endIconMode=\"password_toggle\"\n        android:hint=\"Retype Password\"\u003e\n        \u003ccom.google.android.material.textfield.TextInputEditText\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:inputType=\"textPassword\" /\u003e\n    \u003c/com.google.android.material.textfield.TextInputLayout\u003e\n\n    \u003ccom.google.android.material.button.MaterialButton\n        android:layout_marginTop=\"20dp\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:text=\"Sign Up\"\n        android:clickable=\"true\"\n        android:textColor=\"@color/white\"\n        android:backgroundTint=\"@color/black\"/\u003e\n\n\u003c/LinearLayout\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famitthecoder%2Fsign-up","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famitthecoder%2Fsign-up","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famitthecoder%2Fsign-up/lists"}