tangled
alpha
login
or
join now
socksthewolf.com
/
skyscheduler
2
fork
atom
Schedule posts to Bluesky with Cloudflare workers.
skyscheduler.work
cf
tool
bsky-tool
cloudflare
bluesky
schedule
bsky
service
social-media
cloudflare-workers
2
fork
atom
overview
issues
pulls
pipelines
add password hinting
SocksTheWolf
6 days ago
1fee32a1
f5b7e6ec
+4
-2
1 changed file
expand all
collapse all
unified
split
src
pages
reset.tsx
+4
-2
src/pages/reset.tsx
···
21
21
22
22
<label>
23
23
New {APP_NAME} Password
24
24
-
<input type="password" name="password" id="password" minlength={MIN_DASHBOARD_PASS} maxlength={MAX_DASHBOARD_PASS} required />
24
24
+
<input type="password" name="password" id="password" autocomplete="new-password"
25
25
+
minlength={MIN_DASHBOARD_PASS} maxlength={MAX_DASHBOARD_PASS} required />
25
26
<small>Passwords should be {MIN_DASHBOARD_PASS} to {MAX_DASHBOARD_PASS} characters long.</small>
26
27
</label>
27
28
28
29
<label>
29
30
Confirm {APP_NAME} Password
30
30
-
<input type="password" name="confirmPassword" id="confirmPassword" minlength={MIN_DASHBOARD_PASS} maxlength={MAX_DASHBOARD_PASS} required />
31
31
+
<input type="password" name="confirmPassword" autocomplete="new-password" id="confirmPassword"
32
32
+
minlength={MIN_DASHBOARD_PASS} maxlength={MAX_DASHBOARD_PASS} required />
31
33
</label>
32
34
</AccountHandler>
33
35
<script type="text/javascript" src="js/reset.js"></script>