Skip to content

Commit 6950a41

Browse files
committed
Clarify unlock password field for hidden volume usage
1 parent fb2858f commit 6950a41

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

frontend/src/App.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,15 +139,15 @@ function UnlockScreen() {
139139
{/* Password Input */}
140140
<div>
141141
<label className="block text-sm font-medium text-foreground mb-3">
142-
Password
142+
Password (standard or hidden)
143143
</label>
144144
<input
145145
type="password"
146146
required
147147
value={password}
148148
onChange={(e) => setPassword(e.target.value)}
149149
className="flex h-11 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50"
150-
placeholder="Enter your password"
150+
placeholder="Enter standard or hidden volume password"
151151
disabled={loading}
152152
/>
153153
</div>
@@ -447,4 +447,4 @@ function App() {
447447
);
448448
}
449449

450-
export default App;
450+
export default App;

0 commit comments

Comments
 (0)