mistpe commited on
Commit
8769d14
1 Parent(s): f7989b2

Delete user_info.html

Browse files
Files changed (1) hide show
  1. user_info.html +0 -55
user_info.html DELETED
@@ -1,55 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>User Information</title>
7
- <style>
8
- body {
9
- font-family: Arial, sans-serif;
10
- line-height: 1.6;
11
- margin: 0;
12
- padding: 20px;
13
- background-color: #f4f4f4;
14
- }
15
- .container {
16
- max-width: 600px;
17
- margin: auto;
18
- background: #fff;
19
- padding: 20px;
20
- border-radius: 5px;
21
- box-shadow: 0 0 10px rgba(0,0,0,0.1);
22
- }
23
- h1 {
24
- color: #333;
25
- }
26
- .info-item {
27
- margin-bottom: 10px;
28
- }
29
- .info-item strong {
30
- display: inline-block;
31
- width: 120px;
32
- }
33
- .photo {
34
- width: 150px;
35
- height: 150px;
36
- object-fit: cover;
37
- border-radius: 50%;
38
- margin-bottom: 20px;
39
- }
40
- </style>
41
- </head>
42
- <body>
43
- <div class="container">
44
- <h1>User Information</h1>
45
- {% if user.photo %}
46
- <img src="{{ user.photo }}" alt="User Photo" class="photo">
47
- {% endif %}
48
- <div class="info-item"><strong>Name:</strong> {{ user.name }}</div>
49
- <div class="info-item"><strong>College:</strong> {{ user.college }}</div>
50
- <div class="info-item"><strong>ID:</strong> {{ user.id }}</div>
51
- <div class="info-item"><strong>Valid Period:</strong> {{ user.valid }}</div>
52
- <div class="info-item"><strong>Type:</strong> {{ user.type }}</div>
53
- </div>
54
- </body>
55
- </html>