geochan/src/user_profile.eml.html

18 lines
783 B
HTML
Raw Normal View History

2021-11-08 15:24:10 +01:00
let f nick bio request =
<%s Format.sprintf "Hello %s !" nick %>
<%s! Dream.form_tag ~action:"/profile" request %>
<div class="mb-3">
<label for="bio" class="form-label">Bio</label>
2021-11-14 22:29:47 +01:00
<textarea name="bio" type="text" class="form-control" id="bio" aria-describedby="bioHelp"><%s bio %></textarea>
<div id="bioHelp" class="form-text">Who are you?</div>
</div>
<button type="submit" class="btn btn-primary">Save</button>
</form>
2021-11-08 15:24:10 +01:00
<img src="/user/<%s nick %>/avatar" class="img-thumbnail" alt="Your avatar picture">
<%s! Dream.form_tag ~action:"/profile" ~enctype:`Multipart_form_data request %>
<input name="files" type="file" multiple>
<button>Submit!</button>
</form>
2021-12-09 01:57:53 +01:00
<%s! User.view_user_plant_list nick %>