-
Notifications
You must be signed in to change notification settings - Fork 0
/
d_info.html
50 lines (42 loc) · 1.86 KB
/
d_info.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css">
<title>Developer info</title>
</head>
<body>
<!-- header start -->
<script src="./js/header.js"></script>
<!-- header end -->
<!-- new edit profile start -->
<div class="container-fluid mt-5 d-flex justify-content-center align-items-center">
<div class="col-md-6">
<h2 class="mb-4 text-center">Developer Info</h2>
<form class="bg-light px-5 py-5 rounded" id="editProfileForm">
<div class="form-group pt-3">
<div class="input-group mb-2 mr-sm-2">
<div class="input-group-prepend">
<div class="input-group-text">Developer</div>
</div>
<input class="form-control" type="text" id="copyInput" value="Raj Sekhar Saha" readonly>
</div>
</div>
<div class="form-group pt-3">
<div class="input-group mb-2 mr-sm-2">
<div class="input-group-prepend">
<div class="input-group-text">Contact me</div>
</div>
<input class="form-control" type="text" id="copyInput" value="businessboyraj22@gmail.com" readonly>
</div>
</div>
</form>
</div>
</div>
<!-- new edit profile end -->
</body>
<script type="module" src="./js/complete_profile.js"></script>
<script type="module" src="./js/navbar.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
</html>