Skip to content

Commit 15628ab

Browse files
committed
enhance(post): swap out html codes for actual symbols
1 parent 716c432 commit 15628ab

File tree

1 file changed

+39
-39
lines changed

1 file changed

+39
-39
lines changed

_posts/2024-12-08-mwcc-2024-weak-crypto.md

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -19,45 +19,45 @@ Hm, that sounds no great, lets take quick look at the html to verify that we ca
1919

2020
```html
2121

22-
<!DOCTYPE html>
23-
<html>
24-
<head>
25-
<meta charset="utf-8">
26-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
27-
<meta name="viewport" content="width=device-width, initial-scale=1">
28-
<title>Admin Panel</title>
29-
<link href="static/bootstrap.min.css" rel="stylesheet">
30-
<link href="static/admin.css" rel="stylesheet">
31-
<script src="static/bootstrap.min.js"></script>
32-
</head>
33-
<body>
34-
<div class="container">
35-
<div class="row vertical-center">
36-
<div class="col-md-4 col-md-offset-4">
37-
<div class="panel panel-default">
38-
<div class="panel-heading">
39-
<h3 class="panel-title text-center"><b>Admin Panel</b></h3>
40-
</div>
41-
<div class="panel-body">
42-
<form id="login_form" handled="true" method="#" action="#">
43-
<fieldset>
44-
<div class="form-group">
45-
<input class="form-control" placeholder="Username" name="username" id="username" type="text" disabled="">
46-
</div>
47-
<div class="form-group">
48-
<input class="form-control" placeholder="Password" name="password" id="password" type="password" disabled="">
49-
</div>
50-
<input type="submit" name="submit" id="submit" class="btn btn-block btn-primary" disabled="">
51-
</fieldset>
52-
</form>
53-
</div>
54-
</div>
55-
<div class="text-center"><a href="api/user">You can verify your user status here</a></div>
56-
</div>
57-
</div>
58-
</div>
59-
</body>
60-
</html>
22+
<!DOCTYPE html>
23+
<html>
24+
<head>
25+
<meta charset="utf-8">
26+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
27+
<meta name="viewport" content="width=device-width, initial-scale=1">
28+
<title>Admin Panel</title>
29+
<link href="static/bootstrap.min.css" rel="stylesheet">
30+
<link href="static/admin.css" rel="stylesheet">
31+
<script src="static/bootstrap.min.js"></script>
32+
</head>
33+
<body>
34+
<div class="container">
35+
<div class="row vertical-center">
36+
<div class="col-md-4 col-md-offset-4">
37+
<div class="panel panel-default">
38+
<div class="panel-heading">
39+
<h3 class="panel-title text-center"><b>Admin Panel</b></h3>
40+
</div>
41+
<div class="panel-body">
42+
<form id="login_form" handled="true" method="#" action="#">
43+
<fieldset>
44+
<div class="form-group">
45+
<input class="form-control" placeholder="Username" name="username" id="username" type="text" disabled="">
46+
</div>
47+
<div class="form-group">
48+
<input class="form-control" placeholder="Password" name="password" id="password" type="password" disabled="">
49+
</div>
50+
<input type="submit" name="submit" id="submit" class="btn btn-block btn-primary" disabled="">
51+
</fieldset>
52+
</form>
53+
</div>
54+
</div>
55+
<div class="text-center"><a href="api/user">You can verify your user status here</a></div>
56+
</div>
57+
</div>
58+
</div>
59+
</body>
60+
</html>
6161

6262
```
6363

0 commit comments

Comments
 (0)