{"id":24794258,"url":"https://github.com/mel-rocha/verificador_idade","last_synced_at":"2025-10-10T20:38:26.228Z","repository":{"id":131624402,"uuid":"283201625","full_name":"Mel-Rocha/Verificador_Idade","owner":"Mel-Rocha","description":"O usuário informa o ano de nascimento e o sexo, o programa retorna o gênero e a idade e apresenta uma imagem.","archived":false,"fork":false,"pushed_at":"2020-07-28T12:18:38.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-10T20:38:24.496Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mel-Rocha.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2020-07-28T12:10:36.000Z","updated_at":"2020-07-28T12:18:41.000Z","dependencies_parsed_at":"2023-03-13T11:12:26.545Z","dependency_job_id":null,"html_url":"https://github.com/Mel-Rocha/Verificador_Idade","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Mel-Rocha/Verificador_Idade","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mel-Rocha%2FVerificador_Idade","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mel-Rocha%2FVerificador_Idade/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mel-Rocha%2FVerificador_Idade/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mel-Rocha%2FVerificador_Idade/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mel-Rocha","download_url":"https://codeload.github.com/Mel-Rocha/Verificador_Idade/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mel-Rocha%2FVerificador_Idade/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279005273,"owners_count":26083863,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-01-29T22:35:22.175Z","updated_at":"2025-10-10T20:38:26.198Z","avatar_url":"https://github.com/Mel-Rocha.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Verificador_Idade\nO usuário informa o ano de nascimento e o sexo, o programa retorna o gênero e a idade e apresenta uma imagem.\n\u003c!DOCTYPE html\u003e\n\u003chtml lang= \"pt-BR\"\u003e\n\u003chead\u003e\n    \u003cmeta charset= \"UTF-8\"\u003e\n    \u003cmeta name= \"viewport\" content= \"width=device-width, initial-scale=1.0\"\u003e\n    \u003cmeta http-equiv= \"X-UA-Compatible\" content=\"ie=edge\"\u003e\n    \u003ctitle\u003eQual é a sua idade?\u003c/title\u003e\n    \u003clink rel=\"stylesheet\" href=\"style.css\"\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n    \u003cheader\u003e\n        \u003ch1\u003eVerificador de Idade\u003c/h1\u003e\n    \u003c/header\u003e\n\n        \u003csection\u003e\n            \u003cdiv\u003e\u003c!--Entrada de Dados--\u003e\n                \u003cp\u003eAno de Nascimento: \n                   \u003cinput type=\"number\" name=\"txtano\" id=\"txtano\" min=\"1920\" max=\"2020\"\u003e\u003c!--O usuário só poderar escolher os anos de 1920 até 2020--\u003e\n                \u003c/p\u003e\n\n                \u003cp\u003eSexo:\n                    \u003cinput type=\"radio\" name=\"radsex\" id=\"masc\" checked\u003e\u003c!--Se o usuário não escolher nenhuma opção de sexo, temos um problema. Portanto colocar checked na opção masculino garante que se o usuário não escolher nada automaticamente a opção masculina será selecionada--\u003e\n                    \u003clabel for=\"masc\"\u003eMasculino\u003c/label\u003e\n                    \u003cinput  type=\"radio\" name=\"radsex\" id=\"fem\"\u003e\u003c!--Os 2 tem que ter o mesmo nome, se não o programa vai deixar eu selecionar os 2 botões--\u003e\n                    \u003clabel for=\"fem\"\u003eFeminino\u003c/label\u003e\n                \u003c/p\u003e\n\n                \u003cp\u003e\n                    \u003cinput type=\"button\" class=\"btn\" value=\"verificar\" onclick=\"verificar()\"\u003e\n                   \u003c!-- \u003cinput type=\"reset\" id=\"btn_reset\" value=\"reset\"\u003e--\u003e\n                  \n                \u003c/p\u003e\n\n\n            \u003c/div\u003e\n            \u003cdiv id=\"resultado\"\u003e\u003c!--Saída de Dados--\u003e\n                Preencha os dados acima para ver os resultados!\n            \u003c/div\u003e\n            \u003c!--\u003cdiv id= \"foto\"\u003e\n                \u003cimg src=\"img/Bambino.png\"\u003e (ficaria assim se eu quissese inserir no html\n            \u003c/div\u003e--\u003e\n\n        \u003c/section\u003e\n        \u003cfooter\u003e\n            \u003cp\u003e\u0026copy; Mel\u003c/p\u003e\n\n        \u003c/footer\u003e\n        \u003cscript src=\"script.js\"\u003e\u003c/script\u003e\n            \n        \n\n   \n\u003c/body\u003e\n\u003c/html\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmel-rocha%2Fverificador_idade","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmel-rocha%2Fverificador_idade","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmel-rocha%2Fverificador_idade/lists"}