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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<meta content= "HTML Tidy for Linux/x86 (vers 1st March 2003), see www.w3.org" name="generator">
<title>Update a Photo of a Friend</title>
</head>
<body>
<!-- tmpl_if success --><h2>Friend Added Successfully.</h2><!-- /tmpl_if -->
<h1>Update a Photo of a Friend</h1>
<form action="photos.cgi" enctype="multipart/form-data" method="post">
<input type="hidden" name="friend_id" >
<input type="hidden" name="rm" value="edit_process">
Friend Name: <input type="text" name= "full_name" > <!-- tmpl_var err_full_name -->
<!-- tmpl_if photo_id -->
<P>
<a href="<tmpl_var photo_url>">Current Image</a> <br/>
<input type="checkbox" value="1" name="photo_delete"> Delete Image?
<input type="hidden" name="photo_id">
</P>
<!-- /tmpl_if -->
<br>
Image: <input type="file" name="photo"> <!-- tmpl_var err_photo -->
<input type="submit">
</form>
</body>
<!-- arch-tag: 44538ba8-8e3a-4f8d-bba2-27d116571506 -->
</html>
|