added css fill in for subtext, and fixed title bug for admin making posts

This commit is contained in:
rawleyIfowler
2022-03-02 11:14:54 -06:00
parent 8604f5d720
commit d1ef7a095c
2 changed files with 3 additions and 2 deletions

View File

@@ -96,5 +96,6 @@ func CreatePost(c *gin.Context) {
c.HTML(http.StatusOK, "post_success.tmpl", struct {
Url string
Success bool
}{Url: f.Get("url"), Success: b})
Title string
}{Url: f.Get("url"), Success: b, Title: " | post attempt"})
}