Eric Xu commited on
Commit
13165af
·
unverified ·
1 Parent(s): ca21edb

Add Suggest buttons for goal and audience instead of black-box auto-fill

Browse files
Files changed (1) hide show
  1. web/static/index.html +10 -4
web/static/index.html CHANGED
@@ -350,13 +350,19 @@
350
  </div>
351
 
352
  <div class="field">
353
- <label>Goal — what outcome do you want?</label>
354
- <input type="text" id="goalText" placeholder="Will be auto-suggested from your entity">
 
 
 
355
  </div>
356
 
357
  <div class="field">
358
- <label>Audience — who are you trying to reach?</label>
359
- <input type="text" id="cohortDesc" placeholder="Will be auto-suggested from your entity">
 
 
 
360
  </div>
361
 
362
  <details class="mb-8">
 
350
  </div>
351
 
352
  <div class="field">
353
+ <div style="display:flex;justify-content:space-between;align-items:center">
354
+ <label>Goal what outcome do you want?</label>
355
+ <button class="secondary" style="padding:4px 12px;font-size:0.75rem" onclick="inferSpec()">Suggest</button>
356
+ </div>
357
+ <input type="text" id="goalText" placeholder="e.g. 'Close enterprise deals' or 'Get hired at a Series B startup'">
358
  </div>
359
 
360
  <div class="field">
361
+ <div style="display:flex;justify-content:space-between;align-items:center">
362
+ <label>Audience who are you trying to reach?</label>
363
+ <button class="secondary" style="padding:4px 12px;font-size:0.75rem" onclick="inferSpec()">Suggest</button>
364
+ </div>
365
+ <input type="text" id="cohortDesc" placeholder="e.g. 'Women aged 25-40 in Chicago' or 'Enterprise CTOs'">
366
  </div>
367
 
368
  <details class="mb-8">