从文本文档中的用户名检索电子邮件时遇到问题

问题描述

所以我有这个网站,它允许我从已注册该网站的用户那里获取电子邮件,因此当您注册时,它会在这样的文本文件中添加您的不和谐用户名和您的电子邮件

Discorduser#0182 [email protected]
Discordusernumber_one#0182 [email protected]

但是,当我输入第一个选项时,它会从第一行检索电子邮件,但是如果我使用第二个用户,它似乎找不到它,这是网站的代码......代码是一部分一个bottle.py 脚本,但这里是这个页面的主要部分

@get('/get_confirm')
def confirm():
    return CONFIRM_PAGE

@post('/get_confirm')
def confirm():
    name = request.forms.get('name')
    for line in open('Confirmations.txt','r').readlines():
        login_info = line.replace('\n','').split()
        if name == login_info[0]:
            return CONFIRM_PAGE.replace('''<h1 id='emailbox'></h1>''','<h1>' + login_info[1] + '</h1>')
        else:
            return CONFIRM_PAGE.replace('''<h1 id='emailbox'></h1>''','<h1>' + 'That user is not valid' + '</h1>')
CONFIRM_PAGE = '''
  <!DOCTYPE html>
  <html>
  <head>
    <link rel="icon" href="/static/icon.ico">
    <title>TylerR - get_confirms</title>
    <style>
        .content {
  background: white;
  padding: 15px;
  border-radius: 3px;
}    

        ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            overflow: hidden;
            background-color: #333;
        }

        li {
            float: left;
        }

        li a,.dropbtn {
            display: inline-block;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
        }

        li a:hover,.dropdown:hover .dropbtn {
            background-color: red;
        }

        li.dropdown {
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0.2);
            z-index: 1;
        }

        .dropdown-content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: left;
        }

        .dropdown-content a:hover {background-color: #f1f1f1}

        .dropdown:hover .dropdown-content {
            display: block;
        }
    </style>
  </head>
  <body style='background-size: cover; background-image: url(\"/static/WebisteBackground.png\"); background-attachment: fixed;'>
    <ul>
        <li><a href='/'>Home</a></li>
        <li><a href='/commands'>Commands</a></li>
        <li><a href='/youtube'>Youtube</a></li>
        <li><a href='/downloads'>Downloads</a></li>
        <a href='https://www.youtube.com/channel/UCTHnGh3DpDXMyuL03ove1tQ'>
            <img align='right' src='/static/youtubelogo.png' style="width:40px;height:40px;">
        </a>
        <a href='https://www.instagram.com/drumsnaps/'>
            <img align='right' src='/static/Insta.png' style="width:40px;height:40px;">
        </a>
    </ul>
    </div>
    <center>
    <h1 style="font-family:Cooper Black; font-size: 7em;"><b>Confirmations<b></h1>
    <br>
    <h1>Please enter an username to retrieve email</h1>
    <h3>When entering name,replace any spaces with _</h3>
    <form method='POST'  action='/get_confirm'>
        <h2>Discord Username:</h2>
        <input name='name' type='text' placeholder='User#0000'>
        <br>
        <input type='submit'>
        </form>
        <div class='content'>
            <h1 id='emailbox'></h1>
        </div>
  </center>
  </body>
  </html>
  '''

我正在使用 Bottle.py

所以如果有人能告诉我为什么会发生这种情况就太好了

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)