-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile_new.php
38 lines (36 loc) · 1.45 KB
/
profile_new.php
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
<!DOCTYPE html>
<html>
<head>
<title>Image Upload</title>
<!-- Include Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- Your custom CSS (if any) -->
<style>
/* Add your custom styles here */
</style>
</head>
<body>
<div class="container mt-5">
<div class="row">
<div class="col-md-6 offset-md-3">
<div class="card">
<div class="card-header">
<h3 class="text-center">Image Upload</h3>
</div>
<div class="card-body">
<form action="profile_upload.php" method="post" enctype="multipart/form-data">
<div class="form-group">
<label for="image">Select an Image:</label>
<input type="file" class="form-control-file" name="image" accept="image/*" required>
</div>
<button type="submit" name="upload" class="btn btn-primary">Upload</button>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Include Bootstrap JS (if needed) -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>