-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f9042ec
commit 0ace107
Showing
2 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<% layout("layout", { title: "Profile - GA Tutorials" }) %> | ||
|
||
<%~ includeFile("nav") %> | ||
|
||
<main class="container-lg pt-3"> | ||
<h1>Choose your role:</h1> | ||
<form id="profile-form" action="/"> | ||
<div class="form-group"> | ||
<label for="exampleInputEmail1">Job Function</label> | ||
<select class="form-control" id="job-function" name="job-function"> | ||
<option selected disabled>Choose One</option> | ||
<option value="business_owner">Business Owner</option> | ||
<option value="developer">Developer</option> | ||
<option value="marketer">Marketer</option> | ||
<option value="other">Other</option> | ||
</select> | ||
<small>This example shows how to set user properties in Google Analytics.</small> | ||
</div> | ||
<button type="submit" class="btn btn-primary">Submit</button> | ||
</form> | ||
</main> | ||
|
||
<%~ includeFile("footer.eta") %> |