GitHub does not allow you to create a template for pull requests created on it's website.
The solution we use is to create pull requests using the github api via the hub command. We wrap this in a script called makePR that does something like:
#!/bin/bash
URL=$(hub pull-request -F PR-template.md)
echo "New PR created at $URL"
open $URL
(untested - our actual script does a lot more - I've left out parameters I think you don't need)
The open command will open the URL in the default browser on MacOS, you may need to adjust this for other platforms. Once it is open, you can edit the title in your web browser.