this repo has no description
1{{ define "title" }}new pull | {{ .RepoInfo.FullName }}{{ end }} 2 3{{ define "repoContent" }} 4 <form 5 hx-post="/{{ .RepoInfo.FullName }}/pulls/new" 6 class="mt-6 space-y-6" 7 hx-swap="none" 8 > 9 <div class="flex flex-col gap-4"> 10 <div> 11 <label for="title">title</label> 12 <input type="text" name="title" id="title" class="w-full" /> 13 <input type="text" name="targetBranch" id="targetBranch" /> 14 </div> 15 <div> 16 <label for="body">body</label> 17 <textarea 18 name="body" 19 id="body" 20 rows="6" 21 class="w-full resize-y" 22 placeholder="Describe your change. Markdown is supported." 23 ></textarea> 24 <textarea 25 name="patch" 26 id="patch" 27 rows="10" 28 class="w-full resize-y font-mono" 29 placeholder="Paste your git-format-patch output here." 30 ></textarea> 31 </div> 32 <div> 33 <button type="submit" class="btn">create</button> 34 </div> 35 </div> 36 <div id="pull" class="error"></div> 37 </form> 38{{ end }}