nbroad commited on
Commit
82914f6
·
verified ·
1 Parent(s): 394105b

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +28 -4
index.html CHANGED
@@ -26,10 +26,34 @@
26
  <main class="container">
27
  <form method="POST">
28
  <div class="grid">
29
- <input type="text" name="token" placeholder="WandB Token" required>
30
- <input type="text" name="entity" placeholder="Entity" required>
31
- <input type="text" name="project" placeholder="Project" required>
32
- <input type="text" name="run_id" placeholder="Run ID" required>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  </div>
34
  <button type="submit">Load Run</button>
35
  </form>
 
26
  <main class="container">
27
  <form method="POST">
28
  <div class="grid">
29
+ <input
30
+ type="text"
31
+ name="token"
32
+ placeholder="WandB Token"
33
+ required
34
+ value="{{ token or '' }}"
35
+ >
36
+ <input
37
+ type="text"
38
+ name="entity"
39
+ placeholder="Entity"
40
+ required
41
+ value="{{ entity or '' }}"
42
+ >
43
+ <input
44
+ type="text"
45
+ name="project"
46
+ placeholder="Project"
47
+ required
48
+ value="{{ project or '' }}"
49
+ >
50
+ <input
51
+ type="text"
52
+ name="run_id"
53
+ placeholder="Run ID"
54
+ required
55
+ value="{{ run_id or '' }}"
56
+ >
57
  </div>
58
  <button type="submit">Load Run</button>
59
  </form>