- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 184 for Login (0.06 seconds)
-
src/main/webapp/js/login.js
$(function() { var $firstInput = $('input[type="text"],select,textarea', ".login-box,section.content").first(); var $errorInput = $(".form-group .has-error").first().next("input,select,textarea"); if ($errorInput.length) { $errorInput.focus(); } else { $firstInput.focus(); } $("section.content input").on("keypress", function(e) { if (e.which === 13) { var $submitButton = $("input#submit, button#submit");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 21 13:12:50 GMT 2025 - 1.3K bytes - Click Count (0) -
docs/en/data/github_sponsors.yml
sponsors: - - login: renderinc avatarUrl: https://avatars.githubusercontent.com/u/36424661?v=4 url: https://github.com/renderinc - login: subtotal avatarUrl: https://avatars.githubusercontent.com/u/176449348?v=4 url: https://github.com/subtotal - login: greptileai avatarUrl: https://avatars.githubusercontent.com/u/140149887?v=4 url: https://github.com/greptileai - login: coderabbitaiCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Jan 02 06:46:57 GMT 2026 - 19.7K bytes - Click Count (0) -
docs/en/data/translators.yml
nilslindemann: login: nilslindemann count: 130 avatarUrl: https://avatars.githubusercontent.com/u/6892179?u=1dca6a22195d6cd1ab20737c0e19a4c55d639472&v=4 url: https://github.com/nilslindemann tiangolo: login: tiangolo count: 67 avatarUrl: https://avatars.githubusercontent.com/u/1326112?u=cb5d06e73a9e1998141b1641aa88e443c6717651&v=4 url: https://github.com/tiangolo jaystone776: login: jaystone776 count: 46
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Apr 01 07:31:54 GMT 2026 - 19.6K bytes - Click Count (0) -
docs/en/data/people.yml
maintainers: - login: tiangolo answers: 1922 avatarUrl: https://avatars.githubusercontent.com/u/1326112?u=cb5d06e73a9e1998141b1641aa88e443c6717651&v=4 url: https://github.com/tiangolo experts: - login: tiangolo count: 1922 avatarUrl: https://avatars.githubusercontent.com/u/1326112?u=cb5d06e73a9e1998141b1641aa88e443c6717651&v=4 url: https://github.com/tiangolo - login: YuriiMotov count: 1156
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Apr 01 15:47:21 GMT 2026 - 28.7K bytes - Click Count (0) -
docs/en/data/translation_reviewers.yml
s111d: login: s111d count: 147 avatarUrl: https://avatars.githubusercontent.com/u/4954856?v=4 url: https://github.com/s111d Xewus: login: Xewus count: 140 avatarUrl: https://avatars.githubusercontent.com/u/85196001?u=f8e2dc7e5104f109cef944af79050ea8d1b8f914&v=4 url: https://github.com/Xewus sodaMelon: login: sodaMelon count: 128
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Apr 01 07:31:54 GMT 2026 - 66K bytes - Click Count (0) -
docs/en/data/contributors.yml
tiangolo: login: tiangolo count: 935 avatarUrl: https://avatars.githubusercontent.com/u/1326112?u=cb5d06e73a9e1998141b1641aa88e443c6717651&v=4 url: https://github.com/tiangolo dependabot: login: dependabot count: 157 avatarUrl: https://avatars.githubusercontent.com/in/29110?v=4 url: https://github.com/apps/dependabot YuriiMotov: login: YuriiMotov count: 66
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Apr 01 07:31:54 GMT 2026 - 20.8K bytes - Click Count (0) -
src/main/webapp/WEB-INF/orig/view/login/index.jsp
<![endif]--> </head> <body class="hold-transition login-page"> <div class="login-box"> <div class="login-logo"> <la:link href="/"> <img src="${fe:url('/images/logo-top.png')}" alt="<la:message key="labels.header_brand_name" />" /> </la:link> </div> <div class="notification">${notification}</div> <div class="card"> <div class="card-body login-card-body"> <p class="login-box-msg">Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 3K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/login/index.jsp
<![endif]--> </head> <body class="hold-transition login-page"> <div class="login-box"> <div class="login-logo"> <la:link href="/"> <img src="${fe:url('/images/logo-top.png')}" alt="<la:message key="labels.header_brand_name" />" /> </la:link> </div> <div class="notification">${notification}</div> <div class="card"> <div class="card-body login-card-body"> <p class="login-box-msg">Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 13 05:54:52 GMT 2025 - 3K bytes - Click Count (1) -
src/main/webapp/WEB-INF/view/login/newpassword.jsp
<![endif]--> </head> <body class="hold-transition login-page"> <div class="login-box"> <div class="login-logo"> <la:link href="/"> <img src="${fe:url('/images/logo-top.png')}" alt="<la:message key="labels.header_brand_name" />" /> </la:link> </div> <div class="card"> <div class="card-body login-card-body"> <p class="login-box-msg"> <la:message key="labels.login.newpassword" /> </p>Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 13 05:54:52 GMT 2025 - 3.1K bytes - Click Count (0) -
tests/test_security_oauth2_optional.py
def get_current_user(oauth_header: str | None = Security(reusable_oauth2)): if oauth_header is None: return None user = User(username=oauth_header) return user @app.post("/login") def login(form_data: OAuth2PasswordRequestFormStrict = Depends()): return form_data @app.get("/users/me") def read_users_me(current_user: User | None = Depends(get_current_user)): if current_user is None:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 9.8K bytes - Click Count (0)