Skip to content

Commit 0303c37

Browse files
committed
change arrow to icon
1 parent eceabf4 commit 0303c37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

memorable-secure-password-generator.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ <h1 class="box-title">Memorable Secure Password Generator - Easy Password For Hu
4444
<div class="box-body">
4545
<form role="form">
4646
<div class="form-group">
47-
<label for="result">Memorable password(Very Hard)</label>
47+
<label for="result">Memorable password(See Tips to Remember This password)</label>
4848
<div class="input-group margin">
4949
<input class="form-control" name="result" id="result" type="text"
5050
placeholder="Copy password from here" readonly="readonly" />
@@ -210,7 +210,7 @@ <h3 class="box-title">What Should I Enter In Memorable Words Field?</h3>
210210
};
211211
const getMemoryTips = (result) => {
212212
const u = [];
213-
result.randomReplaceResult.requestLevelCharMappings.forEach((v, k, m) => { if (v !== k) u.push(`<code>${k}</code> => <code>${v}</code>`); });
213+
result.randomReplaceResult.requestLevelCharMappings.forEach((v, k, m) => { if (v !== k) u.push(`<code>${k}</code> <i class="fa fa-fw fa-arrows-h"></i> <code>${v}</code>`); });
214214
return u.join('\n');
215215
};
216216
var generateAndShowPassword = function () {

0 commit comments

Comments
 (0)